Interface StageExecution.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StageExecution.Builder,StageExecution>,SdkBuilder<StageExecution.Builder,StageExecution>,SdkPojo
- Enclosing class:
- StageExecution
public static interface StageExecution.Builder extends SdkPojo, CopyableBuilder<StageExecution.Builder,StageExecution>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StageExecution.BuilderpipelineExecutionId(String pipelineExecutionId)The ID of the pipeline execution associated with the stage.StageExecution.Builderstatus(String status)The status of the stage, or for a completed stage, the last status of the stage.StageExecution.Builderstatus(StageExecutionStatus status)The status of the stage, or for a completed stage, the last status of the stage.StageExecution.Buildertype(String type)The type of pipeline execution for the stage, such as a rollback pipeline execution.StageExecution.Buildertype(ExecutionType type)The type of pipeline execution for the stage, such as a rollback pipeline execution.-
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
-
pipelineExecutionId
StageExecution.Builder pipelineExecutionId(String pipelineExecutionId)
The ID of the pipeline execution associated with the stage.
- Parameters:
pipelineExecutionId- The ID of the pipeline execution associated with the stage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
StageExecution.Builder status(String status)
The status of the stage, or for a completed stage, the last status of the stage.
A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.
- Parameters:
status- The status of the stage, or for a completed stage, the last status of the stage.A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StageExecutionStatus,StageExecutionStatus
-
status
StageExecution.Builder status(StageExecutionStatus status)
The status of the stage, or for a completed stage, the last status of the stage.
A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.
- Parameters:
status- The status of the stage, or for a completed stage, the last status of the stage.A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StageExecutionStatus,StageExecutionStatus
-
type
StageExecution.Builder type(String type)
The type of pipeline execution for the stage, such as a rollback pipeline execution.
- Parameters:
type- The type of pipeline execution for the stage, such as a rollback pipeline execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionType,ExecutionType
-
type
StageExecution.Builder type(ExecutionType type)
The type of pipeline execution for the stage, such as a rollback pipeline execution.
- Parameters:
type- The type of pipeline execution for the stage, such as a rollback pipeline execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionType,ExecutionType
-
-