Interface CfnFlow.S3OutputFormatConfigProperty

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

@Stability(Stable) public static interface CfnFlow.S3OutputFormatConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.

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.appflow.*;
 S3OutputFormatConfigProperty s3OutputFormatConfigProperty = S3OutputFormatConfigProperty.builder()
         .aggregationConfig(AggregationConfigProperty.builder()
                 .aggregationType("aggregationType")
                 .targetFileSize(123)
                 .build())
         .fileType("fileType")
         .prefixConfig(PrefixConfigProperty.builder()
                 .pathPrefixHierarchy(List.of("pathPrefixHierarchy"))
                 .prefixFormat("prefixFormat")
                 .prefixType("prefixType")
                 .build())
         .preserveSourceDataTyping(false)
         .build();
 

See Also: