Interface CfnExport.DestinationConfigurationsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnExport.DestinationConfigurationsProperty.Jsii$Proxy
Enclosing class:
CfnExport

@Stability(Stable) public static interface CfnExport.DestinationConfigurationsProperty extends software.amazon.jsii.JsiiSerializable
The destinations used for data exports.

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.bcmdataexports.*;
 DestinationConfigurationsProperty destinationConfigurationsProperty = DestinationConfigurationsProperty.builder()
         .s3Destination(S3DestinationProperty.builder()
                 .s3Bucket("s3Bucket")
                 .s3OutputConfigurations(S3OutputConfigurationsProperty.builder()
                         .compression("compression")
                         .format("format")
                         .outputType("outputType")
                         .overwrite("overwrite")
                         .build())
                 .s3Prefix("s3Prefix")
                 .s3Region("s3Region")
                 .build())
         .build();
 

See Also: