Class: Aws::CodeCommit::Types::BatchAssociateApprovalRuleTemplateWithRepositoriesInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::BatchAssociateApprovalRuleTemplateWithRepositoriesInput
 
 
- 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 template you want to associate with one or more repositories.
 - 
  
    
      #repository_names  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The names of the repositories you want to associate with the template.
 
Instance Attribute Details
#approval_rule_template_name ⇒ String
The name of the template you want to associate with one or more repositories.
      349 350 351 352 353 354  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 349 class BatchAssociateApprovalRuleTemplateWithRepositoriesInput < Struct.new( :approval_rule_template_name, :repository_names) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_names ⇒ Array<String>
The names of the repositories you want to associate with the template.
<note markdown=“1”> The length constraint limit is for each string in the array. The array itself can be empty.
</note>
  
      349 350 351 352 353 354  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 349 class BatchAssociateApprovalRuleTemplateWithRepositoriesInput < Struct.new( :approval_rule_template_name, :repository_names) SENSITIVE = [] include Aws::Structure end  |