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