CopyableBuilder<StageDeclaration.Builder,StageDeclaration>
, SdkBuilder<StageDeclaration.Builder,StageDeclaration>
public static interface StageDeclaration.Builder extends CopyableBuilder<StageDeclaration.Builder,StageDeclaration>
Modifier and Type | Method | Description |
---|---|---|
StageDeclaration.Builder |
actions(Collection<ActionDeclaration> actions) |
The actions included in a stage.
|
StageDeclaration.Builder |
actions(ActionDeclaration... actions) |
The actions included in a stage.
|
StageDeclaration.Builder |
blockers(Collection<BlockerDeclaration> blockers) |
Reserved for future use.
|
StageDeclaration.Builder |
blockers(BlockerDeclaration... blockers) |
Reserved for future use.
|
StageDeclaration.Builder |
name(String name) |
The name of the stage.
|
copy
apply, build
StageDeclaration.Builder name(String name)
The name of the stage.
name
- The name of the stage.StageDeclaration.Builder blockers(Collection<BlockerDeclaration> blockers)
Reserved for future use.
blockers
- Reserved for future use.StageDeclaration.Builder blockers(BlockerDeclaration... blockers)
Reserved for future use.
NOTE: This method appends the values to the existing list (if any). Use
#setBlockers(java.util.Collection)
or #withBlockers(java.util.Collection)
if you want to
override the existing values.
blockers
- Reserved for future use.StageDeclaration.Builder actions(Collection<ActionDeclaration> actions)
The actions included in a stage.
actions
- The actions included in a stage.StageDeclaration.Builder actions(ActionDeclaration... actions)
The actions included in a stage.
NOTE: This method appends the values to the existing list (if any). Use
#setActions(java.util.Collection)
or #withActions(java.util.Collection)
if you want to
override the existing values.
actions
- The actions included in a stage.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.