v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-1442228254.5 KB

Returns information about a specific version of a slot type. In addition to specifying the slot type name, you must specify the slot type version.

This operation requires permissions for the lex:GetSlotType action.

get/slottypes/{name}/versions/{version}

Path parameters

namestring required

The name of the slot type. The name is case sensitive.

versionstring required

The version of the slot type.

Response

Success

namestring

The name of the slot type.

descriptionstring

A description of the slot type.

lastUpdatedDatestring date-time

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

createdDatestring date-time

The date that the slot type was created.

versionstring

The version of the slot type.

checksumstring

Checksum of the <code>$LATEST</code> version of the slot type.

valueSelectionStrategy'ORIGINAL_VALUE' | 'TOP_RESOLUTION'

The strategy that Amazon Lex uses to determine the value of the slot. For more information, see <a>PutSlotType</a>.

parentSlotTypeSignaturestring

The built-in slot type used as a parent for the slot type.

Example response

{
  "version": "$LATEST",
  "name": "DocPizzaCrustType",
  "checksum": "210b3d5a-90a3-4b22-ac7e-f50c2c71095f",
  "createdDate": 1494359274.403,
  "description": "Available crust types",
  "enumerationValues": [
    {
      "value": "thick"
    },
    {
      "value": "thin"
    }
  ],
  "lastUpdatedDate": 1494359274.403
}