Class: Aws::CodePipeline::Types::EnableStageTransitionInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codepipeline/types.rb

Overview

Note:

When making an API call, you may pass EnableStageTransitionInput data as a hash:

{
  pipeline_name: "PipelineName", # required
  stage_name: "StageName", # required
  transition_type: "Inbound", # required, accepts Inbound, Outbound
}

Represents the input of an EnableStageTransition action.

Instance Attribute Summary collapse

Instance Attribute Details

#pipeline_nameString

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

Returns:

  • (String)


1197
1198
1199
1200
1201
1202
# File 'lib/aws-sdk-codepipeline/types.rb', line 1197

class EnableStageTransitionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :transition_type)
  include Aws::Structure
end

#stage_nameString

The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).

Returns:

  • (String)


1197
1198
1199
1200
1201
1202
# File 'lib/aws-sdk-codepipeline/types.rb', line 1197

class EnableStageTransitionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :transition_type)
  include Aws::Structure
end

#transition_typeString

Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).

Returns:

  • (String)


1197
1198
1199
1200
1201
1202
# File 'lib/aws-sdk-codepipeline/types.rb', line 1197

class EnableStageTransitionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :transition_type)
  include Aws::Structure
end