Interface CfnCapacityManagerDataExportMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapacityManagerDataExportMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:58.323Z")
@Stability(Stable)
public interface CfnCapacityManagerDataExportMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCapacityManagerDataExportPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
CfnCapacityManagerDataExportMixinProps cfnCapacityManagerDataExportMixinProps = CfnCapacityManagerDataExportMixinProps.builder()
.outputFormat("outputFormat")
.s3BucketName("s3BucketName")
.s3BucketPrefix("s3BucketPrefix")
.schedule("schedule")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCapacityManagerDataExportMixinPropsstatic final classAn implementation forCfnCapacityManagerDataExportMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe file format of the exported data.default StringThe name of the S3 bucket where export files are delivered.default StringThe S3 key prefix used for organizing export files within the bucket.default StringThe frequency at which data exports are generated.getTags()The tags associated with the data export configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputFormat
The file format of the exported data.- See Also:
-
getS3BucketName
The name of the S3 bucket where export files are delivered.- See Also:
-
getS3BucketPrefix
The S3 key prefix used for organizing export files within the bucket.- See Also:
-
getSchedule
The frequency at which data exports are generated.- See Also:
-
getTags
The tags associated with the data export configuration.- See Also:
-
builder
-