Class: Aws::CodePipeline::Types::DeleteCustomActionTypeInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::DeleteCustomActionTypeInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
Represents the input of a ‘DeleteCustomActionType` operation. The custom action will be marked as deleted.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #category  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The category of the custom action that you want to delete, such as source or deploy.
 - 
  
    
      #provider  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The provider of the service used in the custom action, such as CodeDeploy.
 - 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the custom action to delete.
 
Instance Attribute Details
#category ⇒ String
The category of the custom action that you want to delete, such as source or deploy.
      1620 1621 1622 1623 1624 1625 1626  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1620 class DeleteCustomActionTypeInput < Struct.new( :category, :provider, :version) SENSITIVE = [] include Aws::Structure end  | 
  
#provider ⇒ String
The provider of the service used in the custom action, such as CodeDeploy.
      1620 1621 1622 1623 1624 1625 1626  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1620 class DeleteCustomActionTypeInput < Struct.new( :category, :provider, :version) SENSITIVE = [] include Aws::Structure end  | 
  
#version ⇒ String
The version of the custom action to delete.
      1620 1621 1622 1623 1624 1625 1626  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 1620 class DeleteCustomActionTypeInput < Struct.new( :category, :provider, :version) SENSITIVE = [] include Aws::Structure end  |