AWSSDKDocSamples.Amazon.CodePipeline.Generated.CodePipelineSamples.CodePipelineEnableStageTransition C# (CSharp) Метод

CodePipelineEnableStageTransition() публичный Метод

public CodePipelineEnableStageTransition ( ) : void
Результат void
        public void CodePipelineEnableStageTransition()
        {
            #region enable-transitions-into-or-out-of-a-stage-1449164924423

            var response = client.EnableStageTransition(new EnableStageTransitionRequest 
            {
                PipelineName = "MyFirstPipeline",
                StageName = "Beta",
                TransitionType = "Inbound" // Valid values are Inbound, which allows artifacts to transition into the stage and be processed by the actions in that stage, or Outbound, which allows artifacts to transition out of the stage after they have been processed by the actions in that stage.
            });


            #endregion
        }