Class: Aws::CodeCommit::Types::UpdateApprovalRuleTemplateContentInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::UpdateApprovalRuleTemplateContentInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #approval_rule_template_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the approval rule template where you want to update the content of the rule.
 - 
  
    
      #existing_rule_content_sha_256  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The SHA-256 hash signature for the content of the approval rule.
 - 
  
    
      #new_rule_content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The content that replaces the existing content of the rule.
 
Instance Attribute Details
#approval_rule_template_name ⇒ String
The name of the approval rule template where you want to update the content of the rule.
      6799 6800 6801 6802 6803 6804 6805  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6799 class UpdateApprovalRuleTemplateContentInput < Struct.new( :approval_rule_template_name, :new_rule_content, :existing_rule_content_sha_256) SENSITIVE = [] include Aws::Structure end  | 
  
#existing_rule_content_sha_256 ⇒ String
The SHA-256 hash signature for the content of the approval rule. You can retrieve this information by using GetPullRequest.
      6799 6800 6801 6802 6803 6804 6805  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6799 class UpdateApprovalRuleTemplateContentInput < Struct.new( :approval_rule_template_name, :new_rule_content, :existing_rule_content_sha_256) SENSITIVE = [] include Aws::Structure end  | 
  
#new_rule_content ⇒ String
The content that replaces the existing content of the rule. Content statements must be complete. You cannot provide only the changes.
      6799 6800 6801 6802 6803 6804 6805  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6799 class UpdateApprovalRuleTemplateContentInput < Struct.new( :approval_rule_template_name, :new_rule_content, :existing_rule_content_sha_256) SENSITIVE = [] include Aws::Structure end  |