Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CUR

import { CUR } from "https://aws-api-bqtgftz736ft.deno.dev/v0.5/services/cur.ts?docs=full";
class CUR {
constructor(apiFactory: client.ApiFactory);
async deleteReportDefinition(params: DeleteReportDefinitionRequest, opts?: client.RequestOptions): Promise<DeleteReportDefinitionResponse>;
async describeReportDefinitions(params?: DescribeReportDefinitionsRequest, opts?: client.RequestOptions): Promise<DescribeReportDefinitionsResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async modifyReportDefinition(params: ModifyReportDefinitionRequest, opts?: client.RequestOptions): Promise<void>;
async putReportDefinition(params: PutReportDefinitionRequest, opts?: client.RequestOptions): Promise<void>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new CUR(apiFactory: client.ApiFactory)
[src]

§Methods

§

Deletes the specified report. Any tags associated with the report are also deleted.

§

Lists the Amazon Web Services Cost and Usage Report available to this account.

§

Lists the tags associated with the specified report definition.

§
modifyReportDefinition(params: ModifyReportDefinitionRequest, opts?: client.RequestOptions): Promise<void>
[src]

Allows you to programmatically update your report preferences.

§
putReportDefinition(params: PutReportDefinitionRequest, opts?: client.RequestOptions): Promise<void>
[src]

Creates a new report using the description that you provide.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Associates a set of tags with a report definition.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Disassociates a set of tags from a report definition.

§Static Properties