interface CfnCapacityManagerDataExportProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnCapacityManagerDataExportProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnCapacityManagerDataExportProps |
Java | software.amazon.awscdk.services.ec2.CfnCapacityManagerDataExportProps |
Python | aws_cdk.aws_ec2.CfnCapacityManagerDataExportProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnCapacityManagerDataExportProps |
Properties for defining a CfnCapacityManagerDataExport.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnCapacityManagerDataExportProps: ec2.CfnCapacityManagerDataExportProps = {
outputFormat: 'outputFormat',
s3BucketName: 's3BucketName',
schedule: 'schedule',
// the properties below are optional
s3BucketPrefix: 's3BucketPrefix',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| output | string | The file format of the exported data. |
| s3 | string | The name of the S3 bucket where export files are delivered. |
| schedule | string | The frequency at which data exports are generated. |
| s3 | string | The S3 key prefix used for organizing export files within the bucket. |
| tags? | Cfn[] | The tags associated with the data export configuration. |
outputFormat
Type:
string
The file format of the exported data.
s3BucketName
Type:
string
The name of the S3 bucket where export files are delivered.
schedule
Type:
string
The frequency at which data exports are generated.
s3BucketPrefix?
Type:
string
(optional)
The S3 key prefix used for organizing export files within the bucket.
tags?
Type:
Cfn[]
(optional)
The tags associated with the data export configuration.

.NET
Go
Java
Python
TypeScript