If you are using Amazon Lex V2, refer to the Amazon Lex V2 guide instead.
If you are using Amazon Lex V1, we recommend upgrading your bots to Amazon Lex V2. We are no longer adding new features to V1 and strongly recommend using V2 for all new bots.
PutSlotType
Creates a custom slot type or replaces an existing custom slot type.
To create a custom slot type, specify a name for the slot type and a set of enumeration values, which are the values that a slot of this type can assume. For more information, see Amazon Lex: How It Works.
If you specify the name of an existing slot type, the fields in the
request replace the existing values in the $LATEST
version of
the slot type. Amazon Lex removes the fields that you don't provide in the
request. If you don't specify required fields, Amazon Lex throws an exception.
When you update the $LATEST
version of a slot type, if a bot
uses the $LATEST
version of an intent that contains the slot
type, the bot's status
field is set to
NOT_BUILT
.
This operation requires permissions for the
lex:PutSlotType
action.
Request Syntax
PUT /slottypes/name
/versions/$LATEST HTTP/1.1
Content-type: application/json
{
"checksum": "string
",
"createVersion": boolean
,
"description": "string
",
"enumerationValues": [
{
"synonyms": [ "string
" ],
"value": "string
"
}
],
"parentSlotTypeSignature": "string
",
"slotTypeConfigurations": [
{
"regexConfiguration": {
"pattern": "string
"
}
}
],
"valueSelectionStrategy": "string
"
}
URI Request Parameters
The request uses the following URI parameters.
- name
-
The name of the slot type. The name is not case sensitive.
The name can't match a built-in slot type name, or a built-in slot type name with "AMAZON." removed. For example, because there is a built-in slot type called
AMAZON.DATE
, you can't create a custom slot type calledDATE
.For a list of built-in slot types, see Slot Type Reference
in the Alexa Skills Kit. Length Constraints: Minimum length of 1. Maximum length of 100.
Pattern:
^([A-Za-z]_?)+$
Required: Yes
Request Body
The request accepts the following data in JSON format.
- checksum
-
Identifies a specific revision of the
$LATEST
version.When you create a new slot type, leave the
checksum
field blank. If you specify a checksum you get aBadRequestException
exception.When you want to update a slot type, set the
checksum
field to the checksum of the most recent revision of the$LATEST
version. If you don't specify thechecksum
field, or if the checksum does not match the$LATEST
version, you get aPreconditionFailedException
exception.Type: String
Required: No
- createVersion
-
When set to
true
a new numbered version of the slot type is created. This is the same as calling theCreateSlotTypeVersion
operation. If you do not specifycreateVersion
, the default isfalse
.Type: Boolean
Required: No
- description
-
A description of the slot type.
Type: String
Length Constraints: Minimum length of 0. Maximum length of 200.
Required: No
- enumerationValues
-
A list of
EnumerationValue
objects that defines the values that the slot type can take. Each value can have a list ofsynonyms
, which are additional values that help train the machine learning model about the values that it resolves for a slot.A regular expression slot type doesn't require enumeration values. All other slot types require a list of enumeration values.
When Amazon Lex resolves a slot value, it generates a resolution list that contains up to five possible values for the slot. If you are using a Lambda function, this resolution list is passed to the function. If you are not using a Lambda function you can choose to return the value that the user entered or the first value in the resolution list as the slot value. The
valueSelectionStrategy
field indicates the option to use.Type: Array of EnumerationValue objects
Array Members: Minimum number of 0 items. Maximum number of 10000 items.
Required: No
- parentSlotTypeSignature
-
The built-in slot type used as the parent of the slot type. When you define a parent slot type, the new slot type has all of the same configuration as the parent.
Only
AMAZON.AlphaNumeric
is supported.Type: String
Length Constraints: Minimum length of 1. Maximum length of 100.
Pattern:
^((AMAZON\.)_?|[A-Za-z]_?)+
Required: No
- slotTypeConfigurations
-
Configuration information that extends the parent built-in slot type. The configuration is added to the settings for the parent slot type.
Type: Array of SlotTypeConfiguration objects
Array Members: Minimum number of 0 items. Maximum number of 10 items.
Required: No
- valueSelectionStrategy
-
Determines the slot resolution strategy that Amazon Lex uses to return slot type values. The field can be set to one of the following values:
-
ORIGINAL_VALUE
- Returns the value entered by the user, if the user value is similar to the slot value. -
TOP_RESOLUTION
- If there is a resolution list for the slot, return the first value in the resolution list as the slot type value. If there is no resolution list, null is returned.
If you don't specify the
valueSelectionStrategy
, the default isORIGINAL_VALUE
.Type: String
Valid Values:
ORIGINAL_VALUE | TOP_RESOLUTION
Required: No
-
Response Syntax
HTTP/1.1 200
Content-type: application/json
{
"checksum": "string",
"createdDate": number,
"createVersion": boolean,
"description": "string",
"enumerationValues": [
{
"synonyms": [ "string" ],
"value": "string"
}
],
"lastUpdatedDate": number,
"name": "string",
"parentSlotTypeSignature": "string",
"slotTypeConfigurations": [
{
"regexConfiguration": {
"pattern": "string"
}
}
],
"valueSelectionStrategy": "string",
"version": "string"
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- checksum
-
Checksum of the
$LATEST
version of the slot type.Type: String
- createdDate
-
The date that the slot type was created.
Type: Timestamp
- createVersion
-
True
if a new version of the slot type was created. If thecreateVersion
field was not specified in the request, thecreateVersion
field is set to false in the response.Type: Boolean
- description
-
A description of the slot type.
Type: String
Length Constraints: Minimum length of 0. Maximum length of 200.
- enumerationValues
-
A list of
EnumerationValue
objects that defines the values that the slot type can take.Type: Array of EnumerationValue objects
Array Members: Minimum number of 0 items. Maximum number of 10000 items.
- lastUpdatedDate
-
The date that the slot type was updated. When you create a slot type, the creation date and last update date are the same.
Type: Timestamp
- name
-
The name of the slot type.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 100.
Pattern:
^([A-Za-z]_?)+$
- parentSlotTypeSignature
-
The built-in slot type used as the parent of the slot type.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 100.
Pattern:
^((AMAZON\.)_?|[A-Za-z]_?)+
- slotTypeConfigurations
-
Configuration information that extends the parent built-in slot type.
Type: Array of SlotTypeConfiguration objects
Array Members: Minimum number of 0 items. Maximum number of 10 items.
- valueSelectionStrategy
-
The slot resolution strategy that Amazon Lex uses to determine the value of the slot. For more information, see PutSlotType.
Type: String
Valid Values:
ORIGINAL_VALUE | TOP_RESOLUTION
- version
-
The version of the slot type. For a new slot type, the version is always
$LATEST
.Type: String
Length Constraints: Minimum length of 1. Maximum length of 64.
Pattern:
\$LATEST|[0-9]+
Errors
- BadRequestException
-
The request is not well formed. For example, a value is invalid or a required field is missing. Check the field values, and try again.
HTTP Status Code: 400
- ConflictException
-
There was a conflict processing the request. Try your request again.
HTTP Status Code: 409
- InternalFailureException
-
An internal Amazon Lex error occurred. Try your request again.
HTTP Status Code: 500
- LimitExceededException
-
The request exceeded a limit. Try your request again.
HTTP Status Code: 429
- PreconditionFailedException
-
The checksum of the resource that you are trying to change does not match the checksum in the request. Check the resource's checksum and try again.
HTTP Status Code: 412
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: