Interface CfnCapacityManagerDataExportProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapacityManagerDataExportProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:02.632Z")
@Stability(Stable)
public interface CfnCapacityManagerDataExportProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
CfnCapacityManagerDataExportProps cfnCapacityManagerDataExportProps = CfnCapacityManagerDataExportProps.builder()
.outputFormat("outputFormat")
.s3BucketName("s3BucketName")
.schedule("schedule")
// the properties below are optional
.s3BucketPrefix("s3BucketPrefix")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCapacityManagerDataExportPropsstatic final classAn implementation forCfnCapacityManagerDataExportProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The file format of the exported data.The name of the S3 bucket where export files are delivered.default StringThe S3 key prefix used for organizing export files within the bucket.The 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:
-
getSchedule
The frequency at which data exports are generated.- See Also:
-
getS3BucketPrefix
The S3 key prefix used for organizing export files within the bucket.- See Also:
-
getTags
The tags associated with the data export configuration.- See Also:
-
builder
-