Class: Aws::CodePipeline::Types::PutActionRevisionInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::PutActionRevisionInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
Represents the input of a ‘PutActionRevision` action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #action_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the action that processes the revision.
 - 
  
    
      #action_revision  ⇒ Types::ActionRevision 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Represents information about the version (or revision) of an action.
 - 
  
    
      #pipeline_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the pipeline that starts processing the revision to the source.
 - 
  
    
      #stage_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the stage that contains the action that acts on the revision.
 
Instance Attribute Details
#action_name ⇒ String
The name of the action that processes the revision.
      3881 3882 3883 3884 3885 3886 3887 3888  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3881 class PutActionRevisionInput < Struct.new( :pipeline_name, :stage_name, :action_name, :action_revision) SENSITIVE = [] include Aws::Structure end  | 
  
#action_revision ⇒ Types::ActionRevision
Represents information about the version (or revision) of an action.
      3881 3882 3883 3884 3885 3886 3887 3888  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3881 class PutActionRevisionInput < Struct.new( :pipeline_name, :stage_name, :action_name, :action_revision) SENSITIVE = [] include Aws::Structure end  | 
  
#pipeline_name ⇒ String
The name of the pipeline that starts processing the revision to the source.
      3881 3882 3883 3884 3885 3886 3887 3888  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3881 class PutActionRevisionInput < Struct.new( :pipeline_name, :stage_name, :action_name, :action_revision) SENSITIVE = [] include Aws::Structure end  | 
  
#stage_name ⇒ String
The name of the stage that contains the action that acts on the revision.
      3881 3882 3883 3884 3885 3886 3887 3888  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 3881 class PutActionRevisionInput < Struct.new( :pipeline_name, :stage_name, :action_name, :action_revision) SENSITIVE = [] include Aws::Structure end  |