Class: Aws::CodePipeline::Types::SourceRevision
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::SourceRevision
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
Information about the version (or revision) of a source artifact that initiated a pipeline execution.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #action_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the action that processed the revision to the source artifact.
 - 
  
    
      #revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system-generated unique ID that identifies the revision number of the artifact.
 - 
  
    
      #revision_summary  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Summary information about the most recent revision of the artifact.
 - 
  
    
      #revision_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The commit ID for the artifact revision.
 
Instance Attribute Details
#action_name ⇒ String
The name of the action that processed the revision to the source artifact.
      4905 4906 4907 4908 4909 4910 4911 4912  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 4905 class SourceRevision < Struct.new( :action_name, :revision_id, :revision_summary, :revision_url) SENSITIVE = [] include Aws::Structure end  | 
  
#revision_id ⇒ String
The system-generated unique ID that identifies the revision number of the artifact.
      4905 4906 4907 4908 4909 4910 4911 4912  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 4905 class SourceRevision < Struct.new( :action_name, :revision_id, :revision_summary, :revision_url) SENSITIVE = [] include Aws::Structure end  | 
  
#revision_summary ⇒ String
Summary information about the most recent revision of the artifact. For GitHub and CodeCommit repositories, the commit message. For Amazon S3 buckets or actions, the user-provided content of a ‘codepipeline-artifact-revision-summary` key specified in the object metadata.
      4905 4906 4907 4908 4909 4910 4911 4912  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 4905 class SourceRevision < Struct.new( :action_name, :revision_id, :revision_summary, :revision_url) SENSITIVE = [] include Aws::Structure end  | 
  
#revision_url ⇒ String
The commit ID for the artifact revision. For artifacts stored in GitHub or CodeCommit repositories, the commit ID is linked to a commit details page.
      4905 4906 4907 4908 4909 4910 4911 4912  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 4905 class SourceRevision < Struct.new( :action_name, :revision_id, :revision_summary, :revision_url) SENSITIVE = [] include Aws::Structure end  |