Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

ListLexicons

class Polly.Paginator.ListLexicons
paginator = client.get_paginator('list_lexicons')
paginate(**kwargs)

Creates an iterator that will paginate through responses from Polly.Client.list_lexicons().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
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.

  • StartingToken (string) --

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

Return type
dict
Returns
Response Syntax
{
    'Lexicons': [
        {
            'Name': 'string',
            'Attributes': {
                'Alphabet': 'string',
                'LanguageCode': 'arb'|'cmn-CN'|'cy-GB'|'da-DK'|'de-DE'|'en-AU'|'en-GB'|'en-GB-WLS'|'en-IN'|'en-US'|'es-ES'|'es-MX'|'es-US'|'fr-CA'|'fr-FR'|'is-IS'|'it-IT'|'ja-JP'|'hi-IN'|'ko-KR'|'nb-NO'|'nl-NL'|'pl-PL'|'pt-BR'|'pt-PT'|'ro-RO'|'ru-RU'|'sv-SE'|'tr-TR'|'en-NZ'|'en-ZA'|'ca-ES'|'de-AT'|'yue-CN'|'ar-AE'|'fi-FI',
                'LastModified': datetime(2015, 1, 1),
                'LexiconArn': 'string',
                'LexemesCount': 123,
                'Size': 123
            }
        },
    ],

}

Response Structure

  • (dict) --
    • Lexicons (list) --

      A list of lexicon names and attributes.

      • (dict) --

        Describes the content of the lexicon.

        • Name (string) --

          Name of the lexicon.

        • Attributes (dict) --

          Provides lexicon metadata.

          • Alphabet (string) --

            Phonetic alphabet used in the lexicon. Valid values are ipa and x-sampa .

          • LanguageCode (string) --

            Language code that the lexicon applies to. A lexicon with a language code such as "en" would be applied to all English languages (en-GB, en-US, en-AUS, en-WLS, and so on.

          • LastModified (datetime) --

            Date lexicon was last modified (a timestamp value).

          • LexiconArn (string) --

            Amazon Resource Name (ARN) of the lexicon.

          • LexemesCount (integer) --

            Number of lexemes in the lexicon.

          • Size (integer) --

            Total size of the lexicon, in characters.