interface CfnReportDefinitionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CUR.Mixins.CfnReportDefinitionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscur/mixins#CfnReportDefinitionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cur.mixins.CfnReportDefinitionMixinProps |
Python | aws_cdk.mixins_preview.aws_cur.mixins.CfnReportDefinitionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cur » mixins » CfnReportDefinitionMixinProps |
Properties for CfnReportDefinitionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cur_mixins } from '@aws-cdk/mixins-preview/aws-cur';
const cfnReportDefinitionMixinProps: cur_mixins.CfnReportDefinitionMixinProps = {
additionalArtifacts: ['additionalArtifacts'],
additionalSchemaElements: ['additionalSchemaElements'],
billingViewArn: 'billingViewArn',
compression: 'compression',
format: 'format',
refreshClosedReports: false,
reportName: 'reportName',
reportVersioning: 'reportVersioning',
s3Bucket: 's3Bucket',
s3Prefix: 's3Prefix',
s3Region: 's3Region',
tags: [{
key: 'key',
value: 'value',
}],
timeUnit: 'timeUnit',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | string[] | A list of manifests that you want AWS to create for this report. |
| additional | string[] | A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs. |
| billing | string | The Amazon Resource Name (ARN) of the billing view. |
| compression? | string | The compression format that Amazon Web Services uses for the report. |
| format? | string | The format that Amazon Web Services saves the report in. |
| refresh | boolean | IResolvable | Whether you want AWS to update your reports after they have been finalized if AWS detects charges related to previous months. |
| report | string | The name of the report that you want to create. |
| report | string | Whether you want AWS to overwrite the previous version of each report or to deliver the report in addition to the previous versions. |
| s3 | string | The S3 bucket where Amazon Web Services delivers the report. |
| s3 | string | The prefix that Amazon Web Services adds to the report name when Amazon Web Services delivers the report. |
| s3 | string | The Region of the S3 bucket that Amazon Web Services delivers the report into. |
| tags? | Cfn[] | The tags to be assigned to the report definition resource. |
| time | string | The granularity of the line items in the report. |
additionalArtifacts?
Type:
string[]
(optional)
A list of manifests that you want AWS to create for this report.
additionalSchemaElements?
Type:
string[]
(optional)
A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs.
billingViewArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the billing view.
You can get this value by using the billing view service public APIs.
compression?
Type:
string
(optional)
The compression format that Amazon Web Services uses for the report.
format?
Type:
string
(optional)
The format that Amazon Web Services saves the report in.
refreshClosedReports?
Type:
boolean | IResolvable
(optional)
Whether you want AWS to update your reports after they have been finalized if AWS detects charges related to previous months.
These charges can include refunds, credits, or support fees.
reportName?
Type:
string
(optional)
The name of the report that you want to create.
The name must be unique, is case sensitive, and can't include spaces.
reportVersioning?
Type:
string
(optional)
Whether you want AWS to overwrite the previous version of each report or to deliver the report in addition to the previous versions.
s3Bucket?
Type:
string
(optional)
The S3 bucket where Amazon Web Services delivers the report.
s3Prefix?
Type:
string
(optional)
The prefix that Amazon Web Services adds to the report name when Amazon Web Services delivers the report.
Your prefix can't include spaces.
s3Region?
Type:
string
(optional)
The Region of the S3 bucket that Amazon Web Services delivers the report into.
tags?
Type:
Cfn[]
(optional)
The tags to be assigned to the report definition resource.
timeUnit?
Type:
string
(optional)
The granularity of the line items in the report.

.NET
Go
Java
Python
TypeScript