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)A description of the stage.ChangeProgressStage.BuilderlastUpdatedAt(Instant lastUpdatedAt)The most recent updated timestamp of the stage.ChangeProgressStage.Buildername(String name)The name of the stage.ChangeProgressStage.Builderstatus(String status)The current status of the stage that the change is in.ChangeProgressStage.Builderstatus(ChangeProgressStageStatuses status)The current status of the stage that the change is in.-
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
-
name
ChangeProgressStage.Builder name(String name)
The name of the stage.
- Parameters:
name- The name of the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ChangeProgressStage.Builder status(String status)
The current status of the stage that the change is in.
- Parameters:
status- The current status of the stage that the change is in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeProgressStageStatuses,ChangeProgressStageStatuses
-
status
ChangeProgressStage.Builder status(ChangeProgressStageStatuses status)
The current status of the stage that the change is in.
- Parameters:
status- The current status of the stage that the change is in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangeProgressStageStatuses,ChangeProgressStageStatuses
-
description
ChangeProgressStage.Builder description(String description)
A description of the stage.
- Parameters:
description- A description of the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
ChangeProgressStage.Builder lastUpdatedAt(Instant lastUpdatedAt)
The most recent updated timestamp of the stage.
- Parameters:
lastUpdatedAt- The most recent updated timestamp of the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-