Class: Aws::CodePipeline::Types::ActionTypeIdentifier
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodePipeline::Types::ActionTypeIdentifier
 
- Defined in:
- gems/aws-sdk-codepipeline/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: AWSorThirdParty.
- 
  
    
      #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
| 965 966 967 968 969 970 971 972 | # File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 965 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.
| 965 966 967 968 969 970 971 972 | # File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 965 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.
| 965 966 967 968 969 970 971 972 | # File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 965 class ActionTypeIdentifier < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end | 
#version ⇒ String
A string that describes the action type version.
| 965 966 967 968 969 970 971 972 | # File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 965 class ActionTypeIdentifier < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end |