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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codepipeline/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)


1669
1670
1671
1672
1673
1674
1675
1676
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 1669

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)


1669
1670
1671
1672
1673
1674
1675
1676
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 1669

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)


1669
1670
1671
1672
1673
1674
1675
1676
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 1669

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)


1669
1670
1671
1672
1673
1674
1675
1676
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 1669

class DisableStageTransitionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :transition_type,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end