LexModelBuildingService / Client / get_intent_versions

get_intent_versions#

LexModelBuildingService.Client.get_intent_versions(**kwargs)#

Gets information about all of the versions of an intent.

The GetIntentVersions operation returns an IntentMetadata object for each version of an intent. For example, if an intent has three numbered versions, the GetIntentVersions operation returns four IntentMetadata objects in the response, one for each numbered version and one for the $LATEST version.

The GetIntentVersions operation always returns at least one version, the $LATEST version.

This operation requires permissions for the lex:GetIntentVersions action.

See also: AWS API Documentation

Request Syntax

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

    [REQUIRED]

    The name of the intent for which versions should be returned.

  • nextToken (string) – A pagination token for fetching the next page of intent versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request.

  • maxResults (integer) – The maximum number of intent versions to return in the response. The default is 10.

Return type:

dict

Returns:

Response Syntax

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

Response Structure

  • (dict) –

    • intents (list) –

      An array of IntentMetadata objects, one for each numbered version of the intent plus one for the $LATEST version.

      • (dict) –

        Provides information about an intent.

        • name (string) –

          The name of the intent.

        • description (string) –

          A description of the intent.

        • lastUpdatedDate (datetime) –

          The date that the intent was updated. When you create an intent, the creation date and last updated date are the same.

        • createdDate (datetime) –

          The date that the intent was created.

        • version (string) –

          The version of the intent.

    • nextToken (string) –

      A pagination token for fetching the next page of intent versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request.

Exceptions

  • LexModelBuildingService.Client.exceptions.NotFoundException

  • LexModelBuildingService.Client.exceptions.LimitExceededException

  • LexModelBuildingService.Client.exceptions.InternalFailureException

  • LexModelBuildingService.Client.exceptions.BadRequestException