Interface CfnExport.S3OutputConfigurationsProperty

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

@Stability(Stable) public static interface CfnExport.S3OutputConfigurationsProperty extends software.amazon.jsii.JsiiSerializable
The compression type, file format, and overwrite preference for the data export.

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.*;
 S3OutputConfigurationsProperty s3OutputConfigurationsProperty = S3OutputConfigurationsProperty.builder()
         .compression("compression")
         .format("format")
         .outputType("outputType")
         .overwrite("overwrite")
         .build();
 

See Also: