Class: Aws::CodePipeline::Types::GetPipelineInput

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 GetPipelineInput data as a hash:

{
  name: "PipelineName", # required
  version: 1,
}

Represents the input of a GetPipeline action.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the pipeline for which you want to get information. Pipeline names must be unique under an Amazon Web Services (AWS) user account.

Returns:

  • (String)


1421
1422
1423
1424
1425
# File 'lib/aws-sdk-codepipeline/types.rb', line 1421

class GetPipelineInput < Struct.new(
  :name,
  :version)
  include Aws::Structure
end

#versionInteger

The version number of the pipeline. If you do not specify a version, defaults to the most current version.

Returns:

  • (Integer)


1421
1422
1423
1424
1425
# File 'lib/aws-sdk-codepipeline/types.rb', line 1421

class GetPipelineInput < Struct.new(
  :name,
  :version)
  include Aws::Structure
end