Class: Aws::CodePipeline::Types::GetActionTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::GetActionTypeInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#category ⇒ String
Defines what kind of action can be taken in the stage.
-
#owner ⇒ String
The creator of an action type that was created with any supported integration model.
-
#provider ⇒ String
The provider of the action type being called.
-
#version ⇒ String
A string that describes the action type version.
Instance Attribute Details
#category ⇒ String
Defines what kind of action can be taken in the stage. The following are the valid values:
-
‘Source`
-
‘Build`
-
‘Test`
-
‘Deploy`
-
‘Approval`
-
‘Invoke`
1952 1953 1954 1955 1956 1957 1958 1959 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1952 class GetActionTypeInput < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ String
The creator of an action type that was created with any supported integration model. There are two valid values: ‘AWS` and `ThirdParty`.
1952 1953 1954 1955 1956 1957 1958 1959 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1952 class GetActionTypeInput < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |
#provider ⇒ String
The provider of the action type being called. The provider name is specified when the action type is created.
1952 1953 1954 1955 1956 1957 1958 1959 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1952 class GetActionTypeInput < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
A string that describes the action type version.
1952 1953 1954 1955 1956 1957 1958 1959 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 1952 class GetActionTypeInput < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |