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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlow.S3OutputFormatConfigPropertystatic final classAn implementation forCfnFlow.S3OutputFormatConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe aggregation settings that you can use to customize the output format of your flow data.default StringIndicates the file type that Amazon AppFlow places in the Amazon S3 bucket.default ObjectDetermines the prefix that Amazon AppFlow applies to the folder name in the Amazon S3 bucket.default ObjectIf your file output format is Parquet, use this parameter to set whether Amazon AppFlow preserves the data types in your source data when it writes the output to Amazon S3.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregationConfig
The aggregation settings that you can use to customize the output format of your flow data.Returns union: either
IResolvableorCfnFlow.AggregationConfigProperty- See Also:
-
getFileType
Indicates the file type that Amazon AppFlow places in the Amazon S3 bucket.- See Also:
-
getPrefixConfig
Determines the prefix that Amazon AppFlow applies to the folder name in the Amazon S3 bucket.You can name folders according to the flow frequency and date.
Returns union: either
IResolvableorCfnFlow.PrefixConfigProperty- See Also:
-
getPreserveSourceDataTyping
If your file output format is Parquet, use this parameter to set whether Amazon AppFlow preserves the data types in your source data when it writes the output to Amazon S3.true: Amazon AppFlow preserves the data types when it writes to Amazon S3. For example, an integer or1in your source data is still an integer in your output.false: Amazon AppFlow converts all of the source data into strings when it writes to Amazon S3. For example, an integer of1in your source data becomes the string"1"in the output.
Returns union: either
BooleanorIResolvable- See Also:
-
builder
-