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

******************************************
get_collaboration_id_namespace_association
******************************************



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

  

  Retrieves an ID namespace association from a specific collaboration.

  

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


  **Request Syntax**
  ::

    response = client.get_collaboration_id_namespace_association(
        collaborationIdentifier='string',
        idNamespaceAssociationIdentifier='string'
    )
    
  :type collaborationIdentifier: string
  :param collaborationIdentifier: **[REQUIRED]** 

    The unique identifier of the collaboration that contains the ID namespace association that you want to retrieve.

    

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

    The unique identifier of the ID namespace association that you want to retrieve.

    

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

    
    ::

      {
          'collaborationIdNamespaceAssociation': {
              'id': 'string',
              'arn': 'string',
              'collaborationId': 'string',
              'collaborationArn': 'string',
              'name': 'string',
              'description': 'string',
              'creatorAccountId': 'string',
              'createTime': datetime(2015, 1, 1),
              'updateTime': datetime(2015, 1, 1),
              'inputReferenceConfig': {
                  'inputReferenceArn': 'string',
                  'manageResourcePolicies': True|False
              },
              'inputReferenceProperties': {
                  'idNamespaceType': 'SOURCE'|'TARGET',
                  'idMappingWorkflowsSupported': [
                      {...}|[...]|123|123.4|'string'|True|None,
                  ]
              },
              'idMappingConfig': {
                  'allowUseAsDimensionColumn': True|False
              }
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **collaborationIdNamespaceAssociation** *(dict) --* 

        The ID namespace association that you requested.

        
        

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

          The unique identifier of the collaboration ID namespace association.

          
        

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

          The Amazon Resource Name (ARN) of the collaboration ID namespace association.

          
        

        - **collaborationId** *(string) --* 

          The unique identifier of the collaboration that contains the collaboration ID namespace association.

          
        

        - **collaborationArn** *(string) --* 

          The Amazon Resource Name (ARN) of the collaboration that contains the collaboration ID namespace association.

          
        

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

          The name of the collaboration ID namespace association.

          
        

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

          The description of the collaboration ID namespace association.

          
        

        - **creatorAccountId** *(string) --* 

          The unique identifier of the Amazon Web Services account that created the collaboration ID namespace association.

          
        

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

          The time at which the collaboration ID namespace association was created.

          
        

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

          The most recent time at which the collaboration ID namespace was updated.

          
        

        - **inputReferenceConfig** *(dict) --* 

          The input reference configuration that's necessary to create the collaboration ID namespace association.

          
          

          - **inputReferenceArn** *(string) --* 

            The Amazon Resource Name (ARN) of the Entity Resolution resource that is being associated to the collaboration. Valid resource ARNs are from the ID namespaces that you own.

            
          

          - **manageResourcePolicies** *(boolean) --* 

            When ``TRUE``, Clean Rooms manages permissions for the ID namespace association resource.

             

            When ``FALSE``, the resource owner manages permissions for the ID namespace association resource.

            
      
        

        - **inputReferenceProperties** *(dict) --* 

          The input reference properties that are needed to create the collaboration ID namespace association.

          
          

          - **idNamespaceType** *(string) --* 

            The ID namespace type for this ID namespace association.

            
          

          - **idMappingWorkflowsSupported** *(list) --* 

            Defines how ID mapping workflows are supported for this ID namespace association.

            
            

            - (:ref:`document<document>`) -- 
        
      
        

        - **idMappingConfig** *(dict) --* 

          The configuration settings for the ID mapping table.

          
          

          - **allowUseAsDimensionColumn** *(boolean) --* 

            An indicator as to whether you can use your column as a dimension column in the ID mapping table ( ``TRUE``) or not ( ``FALSE``).

             

            Default is ``FALSE``.

            
      
    
  
  **Exceptions**
  
  *   :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`

  