CleanRoomsService / Client / list_collaboration_id_namespace_associations

list_collaboration_id_namespace_associations#

CleanRoomsService.Client.list_collaboration_id_namespace_associations(**kwargs)#

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

See also: AWS API Documentation

Request Syntax

response = client.list_collaboration_id_namespace_associations(
    collaborationIdentifier='string',
    nextToken='string',
    maxResults=123
)
Parameters:
  • collaborationIdentifier (string) –

    [REQUIRED]

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

  • nextToken (string) – The pagination token that’s used to fetch the next set of results.

  • maxResults (integer) – 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.>

Return type:

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

  • CleanRoomsService.Client.exceptions.ResourceNotFoundException

  • CleanRoomsService.Client.exceptions.InternalServerException

  • CleanRoomsService.Client.exceptions.ValidationException

  • CleanRoomsService.Client.exceptions.ThrottlingException

  • CleanRoomsService.Client.exceptions.AccessDeniedException