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`
 
      1964 1965 1966 1967 1968 1969 1970 1971  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1964 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`.
      1964 1965 1966 1967 1968 1969 1970 1971  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1964 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.
      1964 1965 1966 1967 1968 1969 1970 1971  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1964 class GetActionTypeInput < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end  | 
  
#version ⇒ String
A string that describes the action type version.
      1964 1965 1966 1967 1968 1969 1970 1971  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1964 class GetActionTypeInput < Struct.new( :category, :owner, :provider, :version) SENSITIVE = [] include Aws::Structure end  |