Interface FlowExecutionError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowExecutionError.Builder,FlowExecutionError>,SdkBuilder<FlowExecutionError.Builder,FlowExecutionError>,SdkPojo
- Enclosing class:
- FlowExecutionError
@Mutable @NotThreadSafe public static interface FlowExecutionError.Builder extends SdkPojo, CopyableBuilder<FlowExecutionError.Builder,FlowExecutionError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowExecutionError.Buildererror(String error)The error code for the type of error that occurred.FlowExecutionError.Buildererror(FlowExecutionErrorType error)The error code for the type of error that occurred.FlowExecutionError.Buildermessage(String message)A descriptive message that provides details about the error.FlowExecutionError.BuildernodeName(String nodeName)The name of the node in the flow where the error occurred (if applicable).-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
error
FlowExecutionError.Builder error(String error)
The error code for the type of error that occurred.
- Parameters:
error- The error code for the type of error that occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionErrorType,FlowExecutionErrorType
-
error
FlowExecutionError.Builder error(FlowExecutionErrorType error)
The error code for the type of error that occurred.
- Parameters:
error- The error code for the type of error that occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionErrorType,FlowExecutionErrorType
-
message
FlowExecutionError.Builder message(String message)
A descriptive message that provides details about the error.
- Parameters:
message- A descriptive message that provides details about the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeName
FlowExecutionError.Builder nodeName(String nodeName)
The name of the node in the flow where the error occurred (if applicable).
- Parameters:
nodeName- The name of the node in the flow where the error occurred (if applicable).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-