interface CfnCapacityManagerDataExportMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnCapacityManagerDataExportMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnCapacityManagerDataExportMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnCapacityManagerDataExportMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnCapacityManagerDataExportMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnCapacityManagerDataExportMixinProps |
Properties for CfnCapacityManagerDataExportPropsMixin.
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/cfn-property-mixins';
const cfnCapacityManagerDataExportMixinProps: ec2.CfnCapacityManagerDataExportMixinProps = {
outputFormat: 'outputFormat',
s3BucketName: 's3BucketName',
s3BucketPrefix: 's3BucketPrefix',
schedule: 'schedule',
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. |
| s3 | string | The S3 key prefix used for organizing export files within the bucket. |
| schedule? | string | The frequency at which data exports are generated. |
| tags? | Cfn[] | The tags associated with the data export configuration. |
outputFormat?
Type:
string
(optional)
The file format of the exported data.
s3BucketName?
Type:
string
(optional)
The name of the S3 bucket where export files are delivered.
s3BucketPrefix?
Type:
string
(optional)
The S3 key prefix used for organizing export files within the bucket.
schedule?
Type:
string
(optional)
The frequency at which data exports are generated.
tags?
Type:
Cfn[]
(optional)
The tags associated with the data export configuration.

.NET
Go
Java
Python
TypeScript