Interface ErrorHandlingConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ErrorHandlingConfig.Builder,ErrorHandlingConfig>,SdkBuilder<ErrorHandlingConfig.Builder,ErrorHandlingConfig>,SdkPojo
- Enclosing class:
- ErrorHandlingConfig
public static interface ErrorHandlingConfig.Builder extends SdkPojo, CopyableBuilder<ErrorHandlingConfig.Builder,ErrorHandlingConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ErrorHandlingConfig.BuilderbucketName(String bucketName)Specifies the name of the Amazon S3 bucket.ErrorHandlingConfig.BuilderbucketPrefix(String bucketPrefix)Specifies the Amazon S3 bucket prefix.ErrorHandlingConfig.BuilderfailOnFirstDestinationError(Boolean failOnFirstDestinationError)Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
failOnFirstDestinationError
ErrorHandlingConfig.Builder failOnFirstDestinationError(Boolean failOnFirstDestinationError)
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
- Parameters:
failOnFirstDestinationError- Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucketPrefix
ErrorHandlingConfig.Builder bucketPrefix(String bucketPrefix)
Specifies the Amazon S3 bucket prefix.
- Parameters:
bucketPrefix- Specifies the Amazon S3 bucket prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucketName
ErrorHandlingConfig.Builder bucketName(String bucketName)
Specifies the name of the Amazon S3 bucket.
- Parameters:
bucketName- Specifies the name of the Amazon S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-