CopyableBuilder<StageState.Builder,StageState>
, SdkBuilder<StageState.Builder,StageState>
public static interface StageState.Builder extends CopyableBuilder<StageState.Builder,StageState>
Modifier and Type | Method | Description |
---|---|---|
StageState.Builder |
actionStates(Collection<ActionState> actionStates) |
The state of the stage.
|
StageState.Builder |
actionStates(ActionState... actionStates) |
The state of the stage.
|
StageState.Builder |
inboundTransitionState(TransitionState inboundTransitionState) |
The state of the inbound transition, which is either enabled or disabled.
|
StageState.Builder |
latestExecution(StageExecution latestExecution) |
Information about the latest execution in the stage, including its ID and status.
|
StageState.Builder |
stageName(String stageName) |
The name of the stage.
|
copy
apply, build
StageState.Builder stageName(String stageName)
The name of the stage.
stageName
- The name of the stage.StageState.Builder inboundTransitionState(TransitionState inboundTransitionState)
The state of the inbound transition, which is either enabled or disabled.
inboundTransitionState
- The state of the inbound transition, which is either enabled or disabled.StageState.Builder actionStates(Collection<ActionState> actionStates)
The state of the stage.
actionStates
- The state of the stage.StageState.Builder actionStates(ActionState... actionStates)
The state of the stage.
NOTE: This method appends the values to the existing list (if any). Use
#setActionStates(java.util.Collection)
or #withActionStates(java.util.Collection)
if you want
to override the existing values.
actionStates
- The state of the stage.StageState.Builder latestExecution(StageExecution latestExecution)
Information about the latest execution in the stage, including its ID and status.
latestExecution
- Information about the latest execution in the stage, including its ID and status.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.