StageOptions¶
-
class
aws_cdk.aws_codepipeline.
StageOptions
(*, stage_name, actions=None, placement=None)¶ Bases:
aws_cdk.aws_codepipeline.StageProps
- Parameters
stage_name (
str
) – The physical, human-readable name to assign to this Pipeline Stage.actions (
Optional
[List
[IAction
]]) – The list of Actions to create this Stage with. You can always add more Actions later by calling {@link IStage#addAction}.placement (
Optional
[StagePlacement
]) –
Attributes
-
actions
¶ The list of Actions to create this Stage with.
You can always add more Actions later by calling {@link IStage#addAction}.
- Return type
Optional
[List
[IAction
]]
-
placement
¶ - Return type
Optional
[StagePlacement
]
-
stage_name
¶ The physical, human-readable name to assign to this Pipeline Stage.
- Return type
str