Interface LastUpdateStatus.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LastUpdateStatus.Builder,LastUpdateStatus>
,SdkBuilder<LastUpdateStatus.Builder,LastUpdateStatus>
,SdkPojo
- Enclosing class:
- LastUpdateStatus
public static interface LastUpdateStatus.Builder extends SdkPojo, CopyableBuilder<LastUpdateStatus.Builder,LastUpdateStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LastUpdateStatus.Builder
failureReason(String failureReason)
If the update wasn't successful, indicates the reason why it failed.LastUpdateStatus.Builder
status(String status)
A value that indicates whether the update was made successful.LastUpdateStatus.Builder
status(LastUpdateStatusValue status)
A value that indicates whether the update was made successful.-
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
-
status
LastUpdateStatus.Builder status(String status)
A value that indicates whether the update was made successful.
- Parameters:
status
- A value that indicates whether the update was made successful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LastUpdateStatusValue
,LastUpdateStatusValue
-
status
LastUpdateStatus.Builder status(LastUpdateStatusValue status)
A value that indicates whether the update was made successful.
- Parameters:
status
- A value that indicates whether the update was made successful.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LastUpdateStatusValue
,LastUpdateStatusValue
-
failureReason
LastUpdateStatus.Builder failureReason(String failureReason)
If the update wasn't successful, indicates the reason why it failed.
- Parameters:
failureReason
- If the update wasn't successful, indicates the reason why it failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-