There are more AWS SDK examples available in the AWS Doc SDK Examples
Use EnableStageTransition
with a CLI
The following code examples show how to use EnableStageTransition
.
- CLI
-
- AWS CLI
-
To enable a transition to a stage in a pipeline
This example enables transitions into the Beta stage of the MyFirstPipeline pipeline in AWS CodePipeline.
Command:
aws codepipeline enable-stage-transition --pipeline-name
MyFirstPipeline
--stage-nameBeta
--transition-typeInbound
Output:
None.
-
For API details, see EnableStageTransition
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example enables the inbound transition for the specified stage in the specified pipeline.
Enable-CPStageTransition -PipelineName CodePipelineDemo -StageName Beta -TransitionType Inbound
-
For API details, see EnableStageTransition in AWS Tools for PowerShell Cmdlet Reference.
-