Interface CfnFlowPropsMixin.S3DestinationPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.S3DestinationPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.S3DestinationPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The properties that are applied when Amazon S3 is used as a 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.cfnpropertymixins.services.appflow.*;
S3DestinationPropertiesProperty s3DestinationPropertiesProperty = S3DestinationPropertiesProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.s3OutputFormatConfig(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.S3DestinationPropertiesPropertystatic final classAn implementation forCfnFlowPropsMixin.S3DestinationPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe Amazon S3 bucket name in which Amazon AppFlow places the transferred data.default StringThe object key for the destination bucket in which Amazon AppFlow places the files.default ObjectThe configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The Amazon S3 bucket name in which Amazon AppFlow places the transferred data.Returns union: either
StringorIBucketRef- See Also:
-
getBucketPrefix
The object key for the destination bucket in which Amazon AppFlow places the files.- See Also:
-
getS3OutputFormatConfig
The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.Returns union: either
IResolvableorCfnFlowPropsMixin.S3OutputFormatConfigProperty- See Also:
-
builder
-