Skip to main content

collaboration_analysis_templates

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

Overview

Namecollaboration_analysis_templates
TypeResource
Idaws.cleanrooms.collaboration_analysis_templates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
collaboration_analysis_templatesarrayThe retrieved list of analysis templates within a collaboration.
errorsarrayError reasons for collaboration analysis templates that could not be retrieved. One error is returned for every collaboration analysis template that could not be retrieved.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_collaboration_analysis_templateselectcollaboration_identifier, regionRetrieves multiple analysis templates within a collaboration by their Amazon Resource Names (ARNs).
get_collaboration_analysis_templateselectcollaboration_identifier, analysis_template_arn, regionRetrieves an analysis template within a collaboration.
list_collaboration_analysis_templatesselectcollaboration_identifier, regionnextToken, maxResultsLists analysis templates within 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
analysis_template_arnstringThe Amazon Resource Name (ARN) associated with the analysis template within a collaboration.
collaboration_identifierstringA unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a nextToken even if the maxResults value has not been met.
nextTokenstringThe pagination token that's used to fetch the next set of results.

SELECT examples

Retrieves multiple analysis templates within a collaboration by their Amazon Resource Names (ARNs).

SELECT
collaboration_analysis_templates,
errors
FROM aws.cleanrooms.collaboration_analysis_templates
WHERE collaboration_identifier = '{{ collaboration_identifier }}' -- required
AND region = '{{ region }}' -- required
;