Class: Aws::CodeCommit::Types::UpdatePullRequestTitleInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::UpdatePullRequestTitleInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #pull_request_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system-generated ID of the pull request.
 - 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The updated title of the pull request.
 
Instance Attribute Details
#pull_request_id ⇒ String
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
      7102 7103 7104 7105 7106 7107  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 7102 class UpdatePullRequestTitleInput < Struct.new( :pull_request_id, :title) SENSITIVE = [] include Aws::Structure end  | 
  
#title ⇒ String
The updated title of the pull request. This replaces the existing title.
      7102 7103 7104 7105 7106 7107  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 7102 class UpdatePullRequestTitleInput < Struct.new( :pull_request_id, :title) SENSITIVE = [] include Aws::Structure end  |