CustomerProfiles / Client / list_profile_object_type_templates

list_profile_object_type_templates#

CustomerProfiles.Client.list_profile_object_type_templates(**kwargs)#

Lists all of the template information for object types.

See also: AWS API Documentation

Request Syntax

response = client.list_profile_object_type_templates(
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NextToken (string) – The pagination token from the previous ListObjectTypeTemplates API call.

  • MaxResults (integer) – The maximum number of objects returned per page.

Return type:

dict

Returns:

Response Syntax

{
    'Items': [
        {
            'TemplateId': 'string',
            'SourceName': 'string',
            'SourceObject': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • Items (list) –

      The list of ListProfileObjectType template instances.

      • (dict) –

        A ProfileObjectTypeTemplate in a list of ProfileObjectTypeTemplates.

        • TemplateId (string) –

          A unique identifier for the object template.

        • SourceName (string) –

          The name of the source of the object template.

        • SourceObject (string) –

          The source of the object template.

    • NextToken (string) –

      The pagination token from the previous ListObjectTypeTemplates API call.

Exceptions