Interface CfnFlow.UpsolverS3OutputFormatConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.UpsolverS3OutputFormatConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.UpsolverS3OutputFormatConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration that determines how Amazon AppFlow formats the flow output data when Upsolver 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.*; UpsolverS3OutputFormatConfigProperty upsolverS3OutputFormatConfigProperty = UpsolverS3OutputFormatConfigProperty.builder() .prefixConfig(PrefixConfigProperty.builder() .pathPrefixHierarchy(List.of("pathPrefixHierarchy")) .prefixFormat("prefixFormat") .prefixType("prefixType") .build()) // the properties below are optional .aggregationConfig(AggregationConfigProperty.builder() .aggregationType("aggregationType") .targetFileSize(123) .build()) .fileType("fileType") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlow.UpsolverS3OutputFormatConfigProperty
static final class
An implementation forCfnFlow.UpsolverS3OutputFormatConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The aggregation settings that you can use to customize the output format of your flow data.default String
Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket.Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPrefixConfig
Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination. -
getAggregationConfig
The aggregation settings that you can use to customize the output format of your flow data. -
getFileType
Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket. -
builder
-