Class: Aws::CodeCommit::Types::PullRequestCreatedEventMetadata
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::PullRequestCreatedEventMetadata
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Metadata about the pull request that is used when comparing the pull request source with its destination.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #destination_commit_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The commit ID of the tip of the branch specified as the destination branch when the pull request was created.
 - 
  
    
      #merge_base  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The commit ID of the most recent commit that the source branch and the destination branch have in common.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository where the pull request was created.
 - 
  
    
      #source_commit_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The commit ID on the source branch used when the pull request was created.
 
Instance Attribute Details
#destination_commit_id ⇒ String
The commit ID of the tip of the branch specified as the destination branch when the pull request was created.
      5671 5672 5673 5674 5675 5676 5677 5678  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5671 class PullRequestCreatedEventMetadata < Struct.new( :repository_name, :source_commit_id, :destination_commit_id, :merge_base) SENSITIVE = [] include Aws::Structure end  | 
  
#merge_base ⇒ String
The commit ID of the most recent commit that the source branch and the destination branch have in common.
      5671 5672 5673 5674 5675 5676 5677 5678  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5671 class PullRequestCreatedEventMetadata < Struct.new( :repository_name, :source_commit_id, :destination_commit_id, :merge_base) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository where the pull request was created.
      5671 5672 5673 5674 5675 5676 5677 5678  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5671 class PullRequestCreatedEventMetadata < Struct.new( :repository_name, :source_commit_id, :destination_commit_id, :merge_base) SENSITIVE = [] include Aws::Structure end  | 
  
#source_commit_id ⇒ String
The commit ID on the source branch used when the pull request was created.
      5671 5672 5673 5674 5675 5676 5677 5678  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5671 class PullRequestCreatedEventMetadata < Struct.new( :repository_name, :source_commit_id, :destination_commit_id, :merge_base) SENSITIVE = [] include Aws::Structure end  |