Class: Aws::CodePipeline::Types::GetPipelineInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::GetPipelineInput
- Defined in:
- gems/aws-sdk-codepipeline/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the pipeline for which you want to get information.
-
#version ⇒ Integer
The version number of the pipeline.
Instance Attribute Details
#name ⇒ String
The name of the pipeline for which you want to get information. Pipeline names must be unique under an AWS user account.
2359 2360 2361 2362 2363 2364 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2359 class GetPipelineInput < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ Integer
The version number of the pipeline. If you do not specify a version, defaults to the current version.
2359 2360 2361 2362 2363 2364 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2359 class GetPipelineInput < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |