Class: Aws::CodePipeline::Types::ActionTypeIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ActionTypeIdentifier
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Specifies the category, owner, provider, and version of the action type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#category ⇒ String
Defines what kind of action can be taken in the stage, one of the following:.
-
#owner ⇒ String
The creator of the action type being called: ‘AWS` or `ThirdParty`.
-
#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, one of the following:
-
‘Source`
-
‘Build`
-
‘Test`
-
‘Deploy`
-
‘Approval`
-
‘Invoke`
933 934 935 936 937 938 939 940 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 933 class ActionTypeIdentifier < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ String
The creator of the action type being called: ‘AWS` or `ThirdParty`.
933 934 935 936 937 938 939 940 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 933 class ActionTypeIdentifier < 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 supplied when the action type is created.
933 934 935 936 937 938 939 940 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 933 class ActionTypeIdentifier < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
A string that describes the action type version.
933 934 935 936 937 938 939 940 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 933 class ActionTypeIdentifier < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |