Skip to main content

configured_model_algorithm_associations

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

Overview

Nameconfigured_model_algorithm_associations
TypeResource
Idaws.cleanroomsml.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 that was associated to the collaboration. (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.
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.
tagsobjectThe optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags: Maximum number of tags per resource - 50. For each resource, each tag key must be unique, and each tag key can have only one value. Maximum key length - 128 Unicode characters in UTF-8. Maximum value length - 256 Unicode characters in UTF-8. If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case sensitive. Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
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_configured_model_algorithm_associationselectconfigured_model_algorithm_association_arn, membership_identifier, regionReturns information about a configured model algorithm association.
list_configured_model_algorithm_associationsselectmembership_identifier, regionnextToken, maxResultsReturns a list of configured model algorithm associations.
create_configured_model_algorithm_associationinsertmembership_identifier, region, configuredModelAlgorithmArn, nameAssociates a configured model algorithm to a collaboration for use by any member of the collaboration.
delete_configured_model_algorithm_associationdeleteconfigured_model_algorithm_association_arn, membership_identifier, regionDeletes a configured model algorithm association.

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
configured_model_algorithm_association_arnstringThe Amazon Resource Name (ARN) of the configured model algorithm association that you want to delete.
membership_identifierstringThe membership ID of the member that is deleting the configured model algorithm association.
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 a configured model algorithm association.

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

INSERT examples

Associates a configured model algorithm to a collaboration for use by any member of the collaboration.

INSERT INTO aws.cleanroomsml.configured_model_algorithm_associations (
configuredModelAlgorithmArn,
name,
description,
privacyConfiguration,
tags,
membership_identifier,
region
)
SELECT
'{{ configuredModelAlgorithmArn }}' /* required */,
'{{ name }}' /* required */,
'{{ description }}',
'{{ privacyConfiguration }}',
'{{ tags }}',
'{{ membership_identifier }}',
'{{ region }}'
RETURNING
configured_model_algorithm_association_arn
;

DELETE examples

Deletes a configured model algorithm association.

DELETE FROM aws.cleanroomsml.configured_model_algorithm_associations
WHERE configured_model_algorithm_association_arn = '{{ configured_model_algorithm_association_arn }}' --required
AND membership_identifier = '{{ membership_identifier }}' --required
AND region = '{{ region }}' --required
;