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

ApplicationCostProfiler

import { ApplicationCostProfiler } from "https://aws-api.deno.dev/v0.4/services/applicationcostprofiler.ts?docs=full";
class ApplicationCostProfiler {
constructor(apiFactory: client.ApiFactory);
async deleteReportDefinition(params: DeleteReportDefinitionRequest, opts?: client.RequestOptions): Promise<DeleteReportDefinitionResult>;
async getReportDefinition(params: GetReportDefinitionRequest, opts?: client.RequestOptions): Promise<GetReportDefinitionResult>;
async importApplicationUsage(params: ImportApplicationUsageRequest, opts?: client.RequestOptions): Promise<ImportApplicationUsageResult>;
async listReportDefinitions(params?: ListReportDefinitionsRequest, opts?: client.RequestOptions): Promise<ListReportDefinitionsResult>;
async putReportDefinition(params: PutReportDefinitionRequest, opts?: client.RequestOptions): Promise<PutReportDefinitionResult>;
async updateReportDefinition(params: UpdateReportDefinitionRequest, opts?: client.RequestOptions): Promise<UpdateReportDefinitionResult>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§

Deletes the specified report definition in AWS Application Cost Profiler. This stops the report from being generated.

§

Retrieves the definition of a report already configured in AWS Application Cost Profiler.

§

Ingests application usage data from Amazon Simple Storage Service (Amazon S3).

The data must already exist in the S3 location. As part of the action, AWS Application Cost Profiler copies the object from your S3 bucket to an S3 bucket owned by Amazon for processing asynchronously.

§

Retrieves a list of all reports and their configurations for your AWS account.

The maximum number of reports is one.

§

Creates the report definition for a report in Application Cost Profiler.

§

Updates existing report in AWS Application Cost Profiler.

§Static Properties