Skip to main content

collaboration_id_namespace_associations

Creates, updates, deletes, gets or lists a collaboration_id_namespace_associations resource.

Overview

Namecollaboration_id_namespace_associations
TypeResource
Idaws.cleanrooms.collaboration_id_namespace_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier of the collaboration ID namespace association. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
namestringThe name of the collaboration ID namespace association. (pattern: <code>(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*</code>)
arnstringThe Amazon Resource Name (ARN) of the collaboration ID namespace association. (pattern: <code>arn:aws:cleanrooms:[\w]{2}-[\w]{4,9}-[\d]:[\d]{12}:membership/[\d\w-]+/idnamespaceassociation/[\d\w-]+</code>)
collaboration_arnstringThe Amazon Resource Name (ARN) of the collaboration that contains the collaboration ID namespace association. (pattern: <code>arn:aws:[\w]+:[\w]{2}-[\w]{4,9}-[\d]:[\d]{12}:collaboration/[\d\w-]+</code>)
collaboration_idstringThe unique identifier of the collaboration that contains the collaboration ID namespace association. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
create_timestring (date-time)The time at which the collaboration ID namespace association was created.
creator_account_idstringThe unique identifier of the Amazon Web Services account that created the collaboration ID namespace association. (pattern: <code>\d+</code>)
descriptionstringThe description of the collaboration ID namespace association. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*</code>)
id_mapping_configobjectThe configuration settings for the ID mapping table.
input_reference_configobjectProvides the information for the ID namespace association input reference configuration.
input_reference_propertiesobjectThe input reference properties that are needed to create the collaboration ID namespace association.
update_timestring (date-time)The most recent time at which the collaboration ID namespace was updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_collaboration_id_namespace_associationselectcollaboration_identifier, id_namespace_association_identifier, regionRetrieves an ID namespace association from a specific collaboration.
list_collaboration_id_namespace_associationsselectcollaboration_identifier, regionnextToken, maxResultsReturns a list of the ID namespace associations in a collaboration.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
collaboration_identifierstringThe unique identifier of the collaboration that contains the ID namespace associations that you want to retrieve.
id_namespace_association_identifierstringThe unique identifier of the ID namespace association that you want to retrieve.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe 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.>
nextTokenstringThe pagination token that's used to fetch the next set of results.

SELECT examples

Retrieves an ID namespace association from a specific collaboration.

SELECT
id,
name,
arn,
collaboration_arn,
collaboration_id,
create_time,
creator_account_id,
description,
id_mapping_config,
input_reference_config,
input_reference_properties,
update_time
FROM aws.cleanrooms.collaboration_id_namespace_associations
WHERE collaboration_identifier = '{{ collaboration_identifier }}' -- required
AND id_namespace_association_identifier = '{{ id_namespace_association_identifier }}' -- required
AND region = '{{ region }}' -- required
;