Interface BatchError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchError.Builder,BatchError>,SdkBuilder<BatchError.Builder,BatchError>,SdkPojo
- Enclosing class:
- BatchError
public static interface BatchError.Builder extends SdkPojo, CopyableBuilder<BatchError.Builder,BatchError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchError.Builderarn(String arn)Channel ARN.BatchError.Buildercode(String code)Error code.BatchError.Buildermessage(String message)Error message, determined by the application.-
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
-
arn
BatchError.Builder arn(String arn)
Channel ARN.
- Parameters:
arn- Channel ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
BatchError.Builder code(String code)
Error code.
- Parameters:
code- Error code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
BatchError.Builder message(String message)
Error message, determined by the application.
- Parameters:
message- Error message, determined by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-