CleanRoomsService / Client / list_analysis_templates

list_analysis_templates#

CleanRoomsService.Client.list_analysis_templates(**kwargs)#

Lists analysis templates that the caller owns.

See also: AWS API Documentation

Request Syntax

response = client.list_analysis_templates(
    membershipIdentifier='string',
    nextToken='string',
    maxResults=123
)
Parameters:
  • membershipIdentifier (string) –

    [REQUIRED]

    The identifier for a membership resource.

  • nextToken (string) – The token value retrieved from a previous call to access the next page of results.

  • maxResults (integer) – The maximum size of the results that is returned per call.

Return type:

dict

Returns:

Response Syntax

{
    'nextToken': 'string',
    'analysisTemplateSummaries': [
        {
            'arn': 'string',
            'createTime': datetime(2015, 1, 1),
            'id': 'string',
            'name': 'string',
            'updateTime': datetime(2015, 1, 1),
            'membershipArn': 'string',
            'membershipId': 'string',
            'collaborationArn': 'string',
            'collaborationId': 'string',
            'description': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • nextToken (string) –

      The token value retrieved from a previous call to access the next page of results.

    • analysisTemplateSummaries (list) –

      Lists analysis template metadata.

      • (dict) –

        The metadata of the analysis template.

        • arn (string) –

          The Amazon Resource Name (ARN) of the analysis template.

        • createTime (datetime) –

          The time that the analysis template summary was created.

        • id (string) –

          The identifier of the analysis template.

        • name (string) –

          The name of the analysis template.

        • updateTime (datetime) –

          The time that the analysis template summary was last updated.

        • membershipArn (string) –

          The Amazon Resource Name (ARN) of the member who created the analysis template.

        • membershipId (string) –

          The identifier for a membership resource.

        • collaborationArn (string) –

          The unique ARN for the analysis template summary’s associated collaboration.

        • collaborationId (string) –

          A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts collaboration ID.

        • description (string) –

          The description of the analysis template.

Exceptions