@Stability(value=Stable)
public static interface CfnFlow.S3DestinationPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
S3DestinationPropertiesProperty s3DestinationPropertiesProperty = S3DestinationPropertiesProperty.builder()
.bucketName("bucketName")
// the properties below are optional
.bucketPrefix("bucketPrefix")
.s3OutputFormatConfig(S3OutputFormatConfigProperty.builder()
.aggregationConfig(AggregationConfigProperty.builder()
.aggregationType("aggregationType")
.build())
.fileType("fileType")
.prefixConfig(PrefixConfigProperty.builder()
.prefixFormat("prefixFormat")
.prefixType("prefixType")
.build())
.preserveSourceDataTyping(false)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFlow.S3DestinationPropertiesProperty.Builder
A builder for
CfnFlow.S3DestinationPropertiesProperty |
static class |
CfnFlow.S3DestinationPropertiesProperty.Jsii$Proxy
An implementation for
CfnFlow.S3DestinationPropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFlow.S3DestinationPropertiesProperty.Builder |
builder() |
String |
getBucketName()
The Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
|
default String |
getBucketPrefix()
The object key for the destination bucket in which Amazon AppFlow places the files.
|
default Object |
getS3OutputFormatConfig()
The configuration that determines how Amazon AppFlow should format the flow output data when Amazon S3 is used as the destination.
|
@Stability(value=Stable) @NotNull String getBucketName()
@Stability(value=Stable) @Nullable default String getBucketPrefix()
@Stability(value=Stable) @Nullable default Object getS3OutputFormatConfig()
@Stability(value=Stable) static CfnFlow.S3DestinationPropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.