public static interface CfnFlow.ErrorHandlingConfigProperty
For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig
is a part of the destination connector details.
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.*; ErrorHandlingConfigProperty errorHandlingConfigProperty = ErrorHandlingConfigProperty.builder() .bucketName("bucketName") .bucketPrefix("bucketPrefix") .failOnFirstError(false) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFlow.ErrorHandlingConfigProperty.Builder
A builder for
CfnFlow.ErrorHandlingConfigProperty |
static class |
CfnFlow.ErrorHandlingConfigProperty.Jsii$Proxy
An implementation for
CfnFlow.ErrorHandlingConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFlow.ErrorHandlingConfigProperty.Builder |
builder() |
default java.lang.String |
getBucketName()
Specifies the name of the Amazon S3 bucket.
|
default java.lang.String |
getBucketPrefix()
Specifies the Amazon S3 bucket prefix.
|
default java.lang.Object |
getFailOnFirstError()
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
|
default java.lang.String getBucketName()
default java.lang.String getBucketPrefix()
default java.lang.Object getFailOnFirstError()
static CfnFlow.ErrorHandlingConfigProperty.Builder builder()