:doc:`CleanRoomsService <../../cleanrooms>` / Client / update_configured_table_association

***********************************
update_configured_table_association
***********************************



.. py:method:: CleanRoomsService.Client.update_configured_table_association(**kwargs)

  

  Updates a configured table association.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociation>`_  


  **Request Syntax**
  ::

    response = client.update_configured_table_association(
        configuredTableAssociationIdentifier='string',
        membershipIdentifier='string',
        description='string',
        roleArn='string'
    )
    
  :type configuredTableAssociationIdentifier: string
  :param configuredTableAssociationIdentifier: **[REQUIRED]** 

    The unique identifier for the configured table association to update. Currently accepts the configured table association ID.

    

  
  :type membershipIdentifier: string
  :param membershipIdentifier: **[REQUIRED]** 

    The unique ID for the membership that the configured table association belongs to.

    

  
  :type description: string
  :param description: 

    A new description for the configured table association.

    

  
  :type roleArn: string
  :param roleArn: 

    The service will assume this role to access catalog metadata and query the table.

    

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

    
    ::

      {
          'configuredTableAssociation': {
              'arn': 'string',
              'id': 'string',
              'configuredTableId': 'string',
              'configuredTableArn': 'string',
              'membershipId': 'string',
              'membershipArn': 'string',
              'roleArn': 'string',
              'name': 'string',
              'description': 'string',
              'analysisRuleTypes': [
                  'AGGREGATION'|'LIST'|'CUSTOM',
              ],
              'createTime': datetime(2015, 1, 1),
              'updateTime': datetime(2015, 1, 1)
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **configuredTableAssociation** *(dict) --* 

        The entire updated configured table association.

        
        

        - **arn** *(string) --* 

          The unique ARN for the configured table association.

          
        

        - **id** *(string) --* 

          The unique ID for the configured table association.

          
        

        - **configuredTableId** *(string) --* 

          The unique ID for the configured table that the association refers to.

          
        

        - **configuredTableArn** *(string) --* 

          The unique ARN for the configured table that the association refers to.

          
        

        - **membershipId** *(string) --* 

          The unique ID for the membership this configured table association belongs to.

          
        

        - **membershipArn** *(string) --* 

          The unique ARN for the membership this configured table association belongs to.

          
        

        - **roleArn** *(string) --* 

          The service will assume this role to access catalog metadata and query the table.

          
        

        - **name** *(string) --* 

          The name of the configured table association, in lowercase. The table is identified by this name when running protected queries against the underlying data.

          
        

        - **description** *(string) --* 

          A description of the configured table association.

          
        

        - **analysisRuleTypes** *(list) --* 

          The analysis rule types for the configured table association.

          
          

          - *(string) --* 
      
        

        - **createTime** *(datetime) --* 

          The time the configured table association was created.

          
        

        - **updateTime** *(datetime) --* 

          The time the configured table association was last updated.

          
    
  
  **Exceptions**
  
  *   :py:class:`CleanRoomsService.Client.exceptions.ConflictException`

  
  *   :py:class:`CleanRoomsService.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`CleanRoomsService.Client.exceptions.InternalServerException`

  
  *   :py:class:`CleanRoomsService.Client.exceptions.ValidationException`

  
  *   :py:class:`CleanRoomsService.Client.exceptions.ThrottlingException`

  
  *   :py:class:`CleanRoomsService.Client.exceptions.AccessDeniedException`

  