interface CfnCapacityManagerDataExportMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnCapacityManagerDataExportMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnCapacityManagerDataExportMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnCapacityManagerDataExportMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnCapacityManagerDataExportMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnCapacityManagerDataExportMixinProps: ec2_mixins.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