LexModelBuildingService / Paginator / GetSlotTypes

GetSlotTypes#

class LexModelBuildingService.Paginator.GetSlotTypes#
paginator = client.get_paginator('get_slot_types')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from LexModelBuildingService.Client.get_slot_types().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    nameContains='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • nameContains (string) – Substring to match in slot type names. A slot type will be returned if any part of its name matches the substring. For example, “xyz” matches both “xyzabc” and “abcxyz.”

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'slotTypes': [
        {
            'name': 'string',
            'description': 'string',
            'lastUpdatedDate': datetime(2015, 1, 1),
            'createdDate': datetime(2015, 1, 1),
            'version': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • slotTypes (list) –

      An array of objects, one for each slot type, that provides information such as the name of the slot type, the version, and a description.

      • (dict) –

        Provides information about a slot type..

        • name (string) –

          The name of the slot type.

        • description (string) –

          A description of the slot type.

        • lastUpdatedDate (datetime) –

          The date that the slot type was updated. When you create a resource, the creation date and last updated date are the same.

        • createdDate (datetime) –

          The date that the slot type was created.

        • version (string) –

          The version of the slot type.

    • NextToken (string) –

      A token to resume pagination.