Skip to main content

collaboration_ml_input_channels

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

Overview

Namecollaboration_ml_input_channels
TypeResource
Idaws.cleanroomsml.collaboration_ml_input_channels

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the ML input channel. (pattern: <code>(?!\s*$)[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t]*</code>)
collaboration_identifierstringThe collaboration ID of the collaboration that contains the ML input channel. (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_associationsarrayThe configured model algorithm associations that were used to create the ML input channel.
create_timestring (date-time)The time at which the ML input channel was created.
creator_account_idstringThe account ID of the member who created the ML input channel. (pattern: <code>[0-9]{12}</code>)
descriptionstringThe description of the ML input channel. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDBFF-\uDC00\uDFFF\t\r\n]*</code>)
membership_identifierstringThe membership ID of the membership that contains the ML input channel. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
ml_input_channel_arnstringThe Amazon Resource Name (ARN) of the ML input channel. (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}/ml-input-channel/[-a-zA-Z0-9_/.]+</code>)
number_of_recordsinteger (int64)The number of records in the ML input channel.
payer_configurationobjectSpecifies which member accounts are responsible for paying for compute and synthetic data generation costs in a Clean Rooms ML collaboration.
privacy_budgetsobjectReturns the privacy budgets that control access to this Clean Rooms ML input channel. Use these budgets to monitor and limit resource consumption over specified time periods.
retention_in_daysintegerThe number of days to retain the data for the ML input channel.
statusstringThe status of the ML input channel. (CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED, ACTIVE, DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED, INACTIVE)
status_detailsobjectDetails about the status of a resource.
synthetic_data_configurationobjectThe synthetic data configuration for this ML input channel, including parameters for generating privacy-preserving synthetic data and evaluation scores for measuring the privacy of the generated data.
update_timestring (date-time)The most recent time at which the ML input channel was updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_collaboration_ml_input_channelselectml_input_channel_arn, collaboration_identifier, regionReturns information about a specific ML input channel in a collaboration.
list_collaboration_ml_input_channelsselectcollaboration_identifier, regionnextToken, maxResultsReturns a list of the ML input channels 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 ML input channels that you want to list.
ml_input_channel_arnstringThe Amazon Resource Name (ARN) of the ML input channel that you want to get.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return.
nextTokenstringThe token value retrieved from a previous call to access the next page of results.

SELECT examples

Returns information about a specific ML input channel in a collaboration.

SELECT
name,
collaboration_identifier,
configured_model_algorithm_associations,
create_time,
creator_account_id,
description,
membership_identifier,
ml_input_channel_arn,
number_of_records,
payer_configuration,
privacy_budgets,
retention_in_days,
status,
status_details,
synthetic_data_configuration,
update_time
FROM aws.cleanroomsml.collaboration_ml_input_channels
WHERE ml_input_channel_arn = '{{ ml_input_channel_arn }}' -- required
AND collaboration_identifier = '{{ collaboration_identifier }}' -- required
AND region = '{{ region }}' -- required
;