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: