CleanRoomsService / Client / create_id_namespace_association

create_id_namespace_association#

CleanRoomsService.Client.create_id_namespace_association(**kwargs)#

Creates an ID namespace association.

See also: AWS API Documentation

Request Syntax

response = client.create_id_namespace_association(
    membershipIdentifier='string',
    inputReferenceConfig={
        'inputReferenceArn': 'string',
        'manageResourcePolicies': True|False
    },
    tags={
        'string': 'string'
    },
    name='string',
    description='string',
    idMappingConfig={
        'allowUseAsDimensionColumn': True|False
    }
)
Parameters:
  • membershipIdentifier (string) –

    [REQUIRED]

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

  • inputReferenceConfig (dict) –

    [REQUIRED]

    The input reference configuration needed to create the ID namespace association.

    • inputReferenceArn (string) – [REQUIRED]

      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) – [REQUIRED]

      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.

  • tags (dict) –

    An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

    • (string) –

      • (string) –

  • name (string) –

    [REQUIRED]

    The name for the ID namespace association.

  • description (string) – The description of the ID namespace association.

  • idMappingConfig (dict) –

    The configuration settings for the ID mapping table.

    • allowUseAsDimensionColumn (boolean) – [REQUIRED]

      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.

Return type:

dict

Returns:

Response Syntax

{
    'idNamespaceAssociation': {
        'id': 'string',
        'arn': 'string',
        'membershipId': 'string',
        'membershipArn': 'string',
        'collaborationId': 'string',
        'collaborationArn': 'string',
        'name': 'string',
        'description': '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) –

    • idNamespaceAssociation (dict) –

      The ID namespace association that was created.

      • id (string) –

        The unique identifier for this ID namespace association.

      • arn (string) –

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

      • membershipId (string) –

        The unique identifier of the membership resource for this ID namespace association.

      • membershipArn (string) –

        The Amazon Resource Name (ARN) of the membership resource for this ID namespace association.

      • collaborationId (string) –

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

      • collaborationArn (string) –

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

      • name (string) –

        The name of this ID namespace association.

      • description (string) –

        The description of the ID namespace association.

      • createTime (datetime) –

        The time at which the ID namespace association was created.

      • updateTime (datetime) –

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

      • inputReferenceConfig (dict) –

        The input reference configuration for the 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 for the 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.

      • 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