@Stability(value=Stable)
public static interface CfnFlow.ErrorHandlingConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getBucketName()
Specifies the name of the Amazon S3 bucket.
|
default String |
getBucketPrefix()
Specifies the Amazon S3 bucket prefix.
|
default Object |
getFailOnFirstError()
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
|
@Stability(value=Stable) @Nullable default String getBucketName()
@Stability(value=Stable) @Nullable default String getBucketPrefix()
@Stability(value=Stable) @Nullable default Object getFailOnFirstError()
@Stability(value=Stable) static CfnFlow.ErrorHandlingConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.