CfnCapacityManagerDataExportMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnCapacityManagerDataExportMixinProps(*, output_format=None, s3_bucket_name=None, s3_bucket_prefix=None, schedule=None, tags=None)
Bases:
objectProperties for CfnCapacityManagerDataExportPropsMixin.
- Parameters:
output_format (
Optional[str]) – The file format of the exported data.s3_bucket_name (
Optional[str]) – The name of the S3 bucket where export files are delivered.s3_bucket_prefix (
Optional[str]) – The S3 key prefix used for organizing export files within the bucket.schedule (
Optional[str]) – The frequency at which data exports are generated.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags associated with the data export configuration.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_capacity_manager_data_export_mixin_props = ec2_mixins.CfnCapacityManagerDataExportMixinProps( output_format="outputFormat", s3_bucket_name="s3BucketName", s3_bucket_prefix="s3BucketPrefix", schedule="schedule", tags=[CfnTag( key="key", value="value" )] )
Attributes
- output_format
The file format of the exported data.
- s3_bucket_name
The name of the S3 bucket where export files are delivered.
- s3_bucket_prefix
The S3 key prefix used for organizing export files within the bucket.
- schedule
The frequency at which data exports are generated.
- tags
The tags associated with the data export configuration.