Interface AlgorithmStatusItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AlgorithmStatusItem.Builder,AlgorithmStatusItem>,SdkBuilder<AlgorithmStatusItem.Builder,AlgorithmStatusItem>,SdkPojo
- Enclosing class:
- AlgorithmStatusItem
@Mutable @NotThreadSafe public static interface AlgorithmStatusItem.Builder extends SdkPojo, CopyableBuilder<AlgorithmStatusItem.Builder,AlgorithmStatusItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AlgorithmStatusItem.BuilderfailureReason(String failureReason)if the overall status isFailed, the reason for the failure.AlgorithmStatusItem.Buildername(String name)The name of the algorithm for which the overall status is being reported.AlgorithmStatusItem.Builderstatus(String status)The current status.AlgorithmStatusItem.Builderstatus(DetailedAlgorithmStatus status)The current status.-
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
-
name
AlgorithmStatusItem.Builder name(String name)
The name of the algorithm for which the overall status is being reported.
- Parameters:
name- The name of the algorithm for which the overall status is being reported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
AlgorithmStatusItem.Builder status(String status)
The current status.
- Parameters:
status- The current status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DetailedAlgorithmStatus,DetailedAlgorithmStatus
-
status
AlgorithmStatusItem.Builder status(DetailedAlgorithmStatus status)
The current status.
- Parameters:
status- The current status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DetailedAlgorithmStatus,DetailedAlgorithmStatus
-
failureReason
AlgorithmStatusItem.Builder failureReason(String failureReason)
if the overall status is
Failed, the reason for the failure.- Parameters:
failureReason- if the overall status isFailed, the reason for the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-