Class: Aws::CodeCommit::Types::OverridePullRequestApprovalRulesInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::OverridePullRequestApprovalRulesInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #override_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether you want to set aside approval rule requirements for the pull request (OVERRIDE) or revoke a previous override and apply approval rule requirements (REVOKE).
 - 
  
    
      #pull_request_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system-generated ID of the pull request for which you want to override all approval rule requirements.
 - 
  
    
      #revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The system-generated ID of the most recent revision of the pull request.
 
Instance Attribute Details
#override_status ⇒ String
Whether you want to set aside approval rule requirements for the pull request (OVERRIDE) or revoke a previous override and apply approval rule requirements (REVOKE). REVOKE status is not stored.
      5249 5250 5251 5252 5253 5254 5255  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5249 class OverridePullRequestApprovalRulesInput < Struct.new( :pull_request_id, :revision_id, :override_status) SENSITIVE = [] include Aws::Structure end  | 
  
#pull_request_id ⇒ String
The system-generated ID of the pull request for which you want to override all approval rule requirements. To get this information, use GetPullRequest.
      5249 5250 5251 5252 5253 5254 5255  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5249 class OverridePullRequestApprovalRulesInput < Struct.new( :pull_request_id, :revision_id, :override_status) SENSITIVE = [] include Aws::Structure end  | 
  
#revision_id ⇒ String
The system-generated ID of the most recent revision of the pull request. You cannot override approval rules for anything but the most recent revision of a pull request. To get the revision ID, use GetPullRequest.
      5249 5250 5251 5252 5253 5254 5255  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5249 class OverridePullRequestApprovalRulesInput < Struct.new( :pull_request_id, :revision_id, :override_status) SENSITIVE = [] include Aws::Structure end  |