Class: Aws::CodePipeline::Types::DisableStageTransitionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::DisableStageTransitionInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Represents the input of a ‘DisableStageTransition` action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pipeline_name ⇒ String
The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
-
#reason ⇒ String
The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests.
-
#stage_name ⇒ String
The name of the stage where you want to disable the inbound or outbound transition of artifacts.
-
#transition_type ⇒ String
Specifies whether artifacts are prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
Instance Attribute Details
#pipeline_name ⇒ String
The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
1829 1830 1831 1832 1833 1834 1835 1836 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1829 class DisableStageTransitionInput < Struct.new( :pipeline_name, :stage_name, :transition_type, :reason) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
1829 1830 1831 1832 1833 1834 1835 1836 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1829 class DisableStageTransitionInput < Struct.new( :pipeline_name, :stage_name, :transition_type, :reason) SENSITIVE = [] include Aws::Structure end |
#stage_name ⇒ String
The name of the stage where you want to disable the inbound or outbound transition of artifacts.
1829 1830 1831 1832 1833 1834 1835 1836 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1829 class DisableStageTransitionInput < Struct.new( :pipeline_name, :stage_name, :transition_type, :reason) SENSITIVE = [] include Aws::Structure end |
#transition_type ⇒ String
Specifies whether artifacts are prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
1829 1830 1831 1832 1833 1834 1835 1836 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1829 class DisableStageTransitionInput < Struct.new( :pipeline_name, :stage_name, :transition_type, :reason) SENSITIVE = [] include Aws::Structure end |