Class: Aws::CodePipeline::Types::DisableStageTransitionInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#pipeline_nameString

The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.

Returns:

  • (String)


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

#reasonString

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.

Returns:

  • (String)


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_nameString

The name of the stage where you want to disable the inbound or outbound transition of artifacts.

Returns:

  • (String)


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_typeString

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).

Returns:

  • (String)


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