Interface CfnFlowPropsMixin.UpsolverDestinationPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.UpsolverDestinationPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.UpsolverDestinationPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The properties that are applied when Upsolver 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.*;
UpsolverDestinationPropertiesProperty upsolverDestinationPropertiesProperty = UpsolverDestinationPropertiesProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.s3OutputFormatConfig(UpsolverS3OutputFormatConfigProperty.builder()
.aggregationConfig(AggregationConfigProperty.builder()
.aggregationType("aggregationType")
.targetFileSize(123)
.build())
.fileType("fileType")
.prefixConfig(PrefixConfigProperty.builder()
.pathPrefixHierarchy(List.of("pathPrefixHierarchy"))
.prefixFormat("prefixFormat")
.prefixType("prefixType")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.UpsolverDestinationPropertiesPropertystatic final classAn implementation forCfnFlowPropsMixin.UpsolverDestinationPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.default StringThe object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.default ObjectThe configuration that determines how data is formatted when Upsolver is used as the flow destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.- See Also:
-
getBucketPrefix
The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.- See Also:
-
getS3OutputFormatConfig
The configuration that determines how data is formatted when Upsolver is used as the flow destination.Returns union: either
IResolvableorCfnFlowPropsMixin.UpsolverS3OutputFormatConfigProperty- See Also:
-
builder
-