Show / Hide Table of Contents

Namespace Pulumi.Aws.Cur

Classes

GetReportDefinition

GetReportDefinitionArgs

GetReportDefinitionResult

ReportDefinition

Manages Cost and Usage Report Definitions.

NOTE: The AWS Cost and Usage Report service is only available in us-east-1 currently.

NOTE: If AWS Organizations is enabled, only the master account can use this resource.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var exampleCurReportDefinition = new Aws.Cur.ReportDefinition("exampleCurReportDefinition", new Aws.Cur.ReportDefinitionArgs
    {
        AdditionalArtifacts = 
        {
            "REDSHIFT",
            "QUICKSIGHT",
        },
        AdditionalSchemaElements = 
        {
            "RESOURCES",
        },
        Compression = "GZIP",
        Format = "textORcsv",
        ReportName = "example-cur-report-definition",
        S3Bucket = "example-bucket-name",
        S3Region = "us-east-1",
        TimeUnit = "HOURLY",
    });
}

}

ReportDefinitionArgs

ReportDefinitionState

Back to top Copyright 2016-2020, Pulumi Corporation.