Interface ChangeProgressStage.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChangeProgressStage.Builder,ChangeProgressStage>,SdkBuilder<ChangeProgressStage.Builder,ChangeProgressStage>,SdkPojo
- Enclosing class:
- ChangeProgressStage
public static interface ChangeProgressStage.Builder extends SdkPojo, CopyableBuilder<ChangeProgressStage.Builder,ChangeProgressStage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeProgressStage.Builderdescription(String description)The description of the progress stage.ChangeProgressStage.BuilderlastUpdated(Instant lastUpdated)The last updated timestamp of the progress stage.ChangeProgressStage.Buildername(String name)The name of the specific progress stage.ChangeProgressStage.Builderstatus(String status)The overall status of a specific progress stage.-
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
ChangeProgressStage.Builder name(String name)
The name of the specific progress stage.
- Parameters:
name- The name of the specific progress stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ChangeProgressStage.Builder status(String status)
The overall status of a specific progress stage.
- Parameters:
status- The overall status of a specific progress stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ChangeProgressStage.Builder description(String description)
The description of the progress stage.
- Parameters:
description- The description of the progress stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdated
ChangeProgressStage.Builder lastUpdated(Instant lastUpdated)
The last updated timestamp of the progress stage.
- Parameters:
lastUpdated- The last updated timestamp of the progress stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-