Class: Aws::CodeCommit::Types::Target
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::Target
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Returns information about a target for a pull request.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #destination_reference  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The branch of the repository where the pull request changes are merged.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository that contains the pull request.
 - 
  
    
      #source_reference  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The branch of the repository that contains the changes for the pull request.
 
Instance Attribute Details
#destination_reference ⇒ String
The branch of the repository where the pull request changes are merged. Also known as the destination branch.
      6671 6672 6673 6674 6675 6676 6677  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6671 class Target < Struct.new( :repository_name, :source_reference, :destination_reference) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository that contains the pull request.
      6671 6672 6673 6674 6675 6676 6677  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6671 class Target < Struct.new( :repository_name, :source_reference, :destination_reference) SENSITIVE = [] include Aws::Structure end  | 
  
#source_reference ⇒ String
The branch of the repository that contains the changes for the pull request. Also known as the source branch.
      6671 6672 6673 6674 6675 6676 6677  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6671 class Target < Struct.new( :repository_name, :source_reference, :destination_reference) SENSITIVE = [] include Aws::Structure end  |