collaboration_configured_model_algorithm_associations
Creates, updates, deletes, gets or lists a collaboration_configured_model_algorithm_associations resource.
Overview
| Name | collaboration_configured_model_algorithm_associations |
| Type | Resource |
| Id | aws.cleanroomsml.collaboration_configured_model_algorithm_associations |
Fields
The following fields are returned by SELECT queries:
- get_collaboration_configured_model_algorithm_association
- list_collaboration_configured_model_algorithm_associations
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the configured model algorithm association. (pattern: <code>(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*</code>) |
collaboration_identifier | string | The 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_arn | string | The 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_arn | string | The 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_time | string (date-time) | The time at which the configured model algorithm association was created. |
creator_account_id | string | The account ID of the member that created the configured model algorithm association. (pattern: <code>[0-9]{12}</code>) |
description | string | The description of the configured model algorithm association. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*</code>) |
membership_identifier | string | The 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_configuration | object | Information about the privacy configuration for a configured model algorithm association. |
update_time | string (date-time) | The most recent time at which the configured model algorithm association was updated. |
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the configured model algorithm association. (pattern: <code>(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*</code>) |
collaboration_identifier | string | The 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_arn | string | The Amazon Resource Name (ARN) of the configured model algorithm that is 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_arn | string | The 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_time | string (date-time) | The time at which the configured model algorithm association was created. |
creator_account_id | string | The account ID of the member that created the configured model algorithm association. (pattern: <code>[0-9]{12}</code>) |
description | string | The description of the configured model algorithm association. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*</code>) |
membership_identifier | string | The 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>) |
update_time | string (date-time) | The most recent time at which the configured model algorithm association was updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_collaboration_configured_model_algorithm_association | select | configured_model_algorithm_association_arn, collaboration_identifier, region | Returns information about the configured model algorithm association in a collaboration. | |
list_collaboration_configured_model_algorithm_associations | select | collaboration_identifier, region | nextToken, maxResults | Returns 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.
| Name | Datatype | Description |
|---|---|---|
collaboration_identifier | string | The collaboration ID of the collaboration that contains the configured model algorithm associations that you are interested in. |
configured_model_algorithm_association_arn | string | The Amazon Resource Name (ARN) of the configured model algorithm association that you want to return information about. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum size of the results that is returned per call. |
nextToken | string | The token value retrieved from a previous call to access the next page of results. |
SELECT examples
- get_collaboration_configured_model_algorithm_association
- list_collaboration_configured_model_algorithm_associations
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
;
Returns a list of the configured model algorithm associations in a collaboration.
SELECT
name,
collaboration_identifier,
configured_model_algorithm_arn,
configured_model_algorithm_association_arn,
create_time,
creator_account_id,
description,
membership_identifier,
update_time
FROM aws.cleanroomsml.collaboration_configured_model_algorithm_associations
WHERE collaboration_identifier = '{{ collaboration_identifier }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;