Skip to main content

collaboration_configured_model_algorithm_associations

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

Overview

Namecollaboration_configured_model_algorithm_associations
TypeResource
Idaws.cleanroomsml.collaboration_configured_model_algorithm_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the configured model algorithm association. (pattern: <code>(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*</code>)
collaboration_identifierstringThe collaboration ID of the collaboration that contains the configured model algorithm association. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
configured_model_algorithm_arnstringThe Amazon Resource Name (ARN) of the configured model algorithm association. (pattern: <code>arn:aws[-a-z]*:cleanrooms-ml:[-a-z0-9]+:[0-9]{12}:configured-model-algorithm/[-a-zA-Z0-9_/.]+</code>)
configured_model_algorithm_association_arnstringThe Amazon Resource Name (ARN) of the configured model algorithm association. (pattern: <code>arn:aws[-a-z]*:cleanrooms-ml:[-a-z0-9]+:[0-9]{12}:membership/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/configured-model-algorithm-association/[-a-zA-Z0-9_/.]+</code>)
create_timestring (date-time)The time at which the configured model algorithm association was created.
creator_account_idstringThe account ID of the member that created the configured model algorithm association. (pattern: <code>[0-9]{12}</code>)
descriptionstringThe description of the configured model algorithm association. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*</code>)
membership_identifierstringThe membership ID of the member that created the configured model algorithm association. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
privacy_configurationobjectInformation about the privacy configuration for a configured model algorithm association.
update_timestring (date-time)The most recent time at which the configured model algorithm association was updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_collaboration_configured_model_algorithm_associationselectconfigured_model_algorithm_association_arn, collaboration_identifier, regionReturns information about the configured model algorithm association in a collaboration.
list_collaboration_configured_model_algorithm_associationsselectcollaboration_identifier, regionnextToken, maxResultsReturns a list of the configured model algorithm 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 collaboration ID of the collaboration that contains the configured model algorithm associations that you are interested in.
configured_model_algorithm_association_arnstringThe Amazon Resource Name (ARN) of the configured model algorithm association that you want to return information about.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum size of the results that is returned per call.
nextTokenstringThe token value retrieved from a previous call to access the next page of results.

SELECT examples

Returns information about the configured model algorithm association in a collaboration.

SELECT
name,
collaboration_identifier,
configured_model_algorithm_arn,
configured_model_algorithm_association_arn,
create_time,
creator_account_id,
description,
membership_identifier,
privacy_configuration,
update_time
FROM aws.cleanroomsml.collaboration_configured_model_algorithm_associations
WHERE configured_model_algorithm_association_arn = '{{ configured_model_algorithm_association_arn }}' -- required
AND collaboration_identifier = '{{ collaboration_identifier }}' -- required
AND region = '{{ region }}' -- required
;