Class: Aws::CodePipeline::Types::GetPipelineInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::GetPipelineInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
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 in an Amazon Web Services account.
2056 2057 2058 2059 2060 2061 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2056 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.
2056 2057 2058 2059 2060 2061 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2056 class GetPipelineInput < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |