Interface CfnReportDefinitionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReportDefinitionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:16.717Z")
@Stability(Stable)
public interface CfnReportDefinitionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnReportDefinition
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cur.*; CfnReportDefinitionProps cfnReportDefinitionProps = CfnReportDefinitionProps.builder() .compression("compression") .format("format") .refreshClosedReports(false) .reportName("reportName") .reportVersioning("reportVersioning") .s3Bucket("s3Bucket") .s3Prefix("s3Prefix") .s3Region("s3Region") .timeUnit("timeUnit") // the properties below are optional .additionalArtifacts(List.of("additionalArtifacts")) .additionalSchemaElements(List.of("additionalSchemaElements")) .billingViewArn("billingViewArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReportDefinitionProps
static final class
An implementation forCfnReportDefinitionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of manifests that you want AWS to create for this report.A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs.default String
The Amazon Resource Name (ARN) of the billing view.The compression format that Amazon Web Services uses for the report.The format that Amazon Web Services saves the report in.Whether you want AWS to update your reports after they have been finalized if AWS detects charges related to previous months.The name of the report that you want to create.Whether you want AWS to overwrite the previous version of each report or to deliver the report in addition to the previous versions.The S3 bucket where Amazon Web Services delivers the report.The prefix that Amazon Web Services adds to the report name when Amazon Web Services delivers the report.The Region of the S3 bucket that Amazon Web Services delivers the report into.The granularity of the line items in the report.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCompression
The compression format that Amazon Web Services uses for the report.- See Also:
-
getFormat
The format that Amazon Web Services saves the report in.- See Also:
-
getRefreshClosedReports
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.
- See Also:
-
getReportName
The name of the report that you want to create.The name must be unique, is case sensitive, and can't include spaces.
- See Also:
-
getReportVersioning
Whether you want AWS to overwrite the previous version of each report or to deliver the report in addition to the previous versions.- See Also:
-
getS3Bucket
The S3 bucket where Amazon Web Services delivers the report.- See Also:
-
getS3Prefix
The prefix that Amazon Web Services adds to the report name when Amazon Web Services delivers the report.Your prefix can't include spaces.
- See Also:
-
getS3Region
The Region of the S3 bucket that Amazon Web Services delivers the report into.- See Also:
-
getTimeUnit
The granularity of the line items in the report.- See Also:
-
getAdditionalArtifacts
A list of manifests that you want AWS to create for this report.- See Also:
-
getAdditionalSchemaElements
A list of strings that indicate additional content that AWS includes in the report, such as individual resource IDs.- See Also:
-
getBillingViewArn
The Amazon Resource Name (ARN) of the billing view.You can get this value by using the billing view service public APIs.
- See Also:
-
builder
- Returns:
- a
CfnReportDefinitionProps.Builder
ofCfnReportDefinitionProps
-