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

********************************************
list_collaboration_id_namespace_associations
********************************************



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

  

  Returns a list of the ID namespace associations in a collaboration.

  

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


  **Request Syntax**
  ::

    response = client.list_collaboration_id_namespace_associations(
        collaborationIdentifier='string',
        nextToken='string',
        maxResults=123
    )
    
  :type collaborationIdentifier: string
  :param collaborationIdentifier: **[REQUIRED]** 

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

    

  
  :type nextToken: string
  :param nextToken: 

    The pagination token that's used to fetch the next set of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum size of the results that is returned per call. Service chooses a default if it has not been set. Service may return a nextToken even if the maximum results has not been met.>

    

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

    
    ::

      {
          'nextToken': 'string',
          'collaborationIdNamespaceAssociationSummaries': [
              {
                  'arn': 'string',
                  'createTime': datetime(2015, 1, 1),
                  'id': 'string',
                  'updateTime': datetime(2015, 1, 1),
                  'collaborationArn': 'string',
                  'collaborationId': 'string',
                  'creatorAccountId': 'string',
                  'inputReferenceConfig': {
                      'inputReferenceArn': 'string',
                      'manageResourcePolicies': True|False
                  },
                  'name': 'string',
                  'description': 'string',
                  'inputReferenceProperties': {
                      'idNamespaceType': 'SOURCE'|'TARGET'
                  }
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **nextToken** *(string) --* 

        The token value provided to access the next page of results.

        
      

      - **collaborationIdNamespaceAssociationSummaries** *(list) --* 

        The summary information of the collaboration ID namespace associations that you requested.

        
        

        - *(dict) --* 

          Provides summary information about the collaboration ID namespace association.

          
          

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

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

            
          

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

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

            
          

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

            The unique identifier of the collaboration ID namespace association.

            
          

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

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

            
          

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

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

            
          

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

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

            
          

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

            The Amazon Web Services account that created this collaboration ID namespace association.

            
          

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

            The input reference configuration that's used 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.

              
        
          

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

            The name of the collaboration ID namespace association.

            
          

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

            The description of the collaboration ID namepsace association.

            
          

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

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

            
            

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

              The ID namespace type for this ID namespace association.

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

  