@Stability(value=Stable)
public static interface CfnFlow.S3SourcePropertiesProperty
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.*;
S3SourcePropertiesProperty s3SourcePropertiesProperty = S3SourcePropertiesProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
// the properties below are optional
.s3InputFormatConfig(S3InputFormatConfigProperty.builder()
.s3InputFileType("s3InputFileType")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFlow.S3SourcePropertiesProperty.Builder
A builder for
CfnFlow.S3SourcePropertiesProperty |
static class |
CfnFlow.S3SourcePropertiesProperty.Jsii$Proxy
An implementation for
CfnFlow.S3SourcePropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFlow.S3SourcePropertiesProperty.Builder |
builder() |
String |
getBucketName()
The Amazon S3 bucket name where the source files are stored.
|
String |
getBucketPrefix()
The object key for the Amazon S3 bucket in which the source files are stored.
|
default Object |
getS3InputFormatConfig()
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.
|
@Stability(value=Stable) @NotNull String getBucketName()
@Stability(value=Stable) @NotNull String getBucketPrefix()
@Stability(value=Stable) @Nullable default Object getS3InputFormatConfig()
@Stability(value=Stable) static CfnFlow.S3SourcePropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.