:doc:`CodeCommit <../../codecommit>` / Client / batch_associate_approval_rule_template_with_repositories

********************************************************
batch_associate_approval_rule_template_with_repositories
********************************************************



.. py:method:: CodeCommit.Client.batch_associate_approval_rule_template_with_repositories(**kwargs)

  

  Creates an association between an approval rule template and one or more specified repositories.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchAssociateApprovalRuleTemplateWithRepositories>`_  


  **Request Syntax**
  ::

    response = client.batch_associate_approval_rule_template_with_repositories(
        approvalRuleTemplateName='string',
        repositoryNames=[
            'string',
        ]
    )
    
  :type approvalRuleTemplateName: string
  :param approvalRuleTemplateName: **[REQUIRED]** 

    The name of the template you want to associate with one or more repositories.

    

  
  :type repositoryNames: list
  :param repositoryNames: **[REQUIRED]** 

    The names of the repositories you want to associate with the template.

     

    .. note::

      

      The length constraint limit is for each string in the array. The array itself can be empty.

      

    

  
    - *(string) --* 

    

  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'associatedRepositoryNames': [
              'string',
          ],
          'errors': [
              {
                  'repositoryName': 'string',
                  'errorCode': 'string',
                  'errorMessage': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **associatedRepositoryNames** *(list) --* 

        A list of names of the repositories that have been associated with the template.

        
        

        - *(string) --* 
    
      

      - **errors** *(list) --* 

        A list of any errors that might have occurred while attempting to create the association between the template and the repositories.

        
        

        - *(dict) --* 

          Returns information about errors in a BatchAssociateApprovalRuleTemplateWithRepositories operation.

          
          

          - **repositoryName** *(string) --* 

            The name of the repository where the association was not made.

            
          

          - **errorCode** *(string) --* 

            An error code that specifies whether the repository name was not valid or not found.

            
          

          - **errorMessage** *(string) --* 

            An error message that provides details about why the repository name was not found or not valid.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`CodeCommit.Client.exceptions.ApprovalRuleTemplateNameRequiredException`

  
  *   :py:class:`CodeCommit.Client.exceptions.InvalidApprovalRuleTemplateNameException`

  
  *   :py:class:`CodeCommit.Client.exceptions.ApprovalRuleTemplateDoesNotExistException`

  
  *   :py:class:`CodeCommit.Client.exceptions.RepositoryNamesRequiredException`

  
  *   :py:class:`CodeCommit.Client.exceptions.MaximumRepositoryNamesExceededException`

  
  *   :py:class:`CodeCommit.Client.exceptions.EncryptionIntegrityChecksFailedException`

  
  *   :py:class:`CodeCommit.Client.exceptions.EncryptionKeyAccessDeniedException`

  
  *   :py:class:`CodeCommit.Client.exceptions.EncryptionKeyDisabledException`

  
  *   :py:class:`CodeCommit.Client.exceptions.EncryptionKeyNotFoundException`

  
  *   :py:class:`CodeCommit.Client.exceptions.EncryptionKeyUnavailableException`

  