List Built In Slot Types
lexmodelsv2_list_built_in_slot_types | R Documentation |
Gets a list of built-in slot types that meet the specified criteria¶
Description¶
Gets a list of built-in slot types that meet the specified criteria.
Usage¶
lexmodelsv2_list_built_in_slot_types(localeId, sortBy, maxResults,
nextToken)
Arguments¶
localeId |
[required] The identifier of the language and locale of the slot types to list. The string must match one of the supported locales. For more information, see Supported languages. |
sortBy |
Determines the sort order for the response from the
|
maxResults |
The maximum number of built-in slot types to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned. |
nextToken |
If the response from the |
Value¶
A list with the following syntax:
list(
builtInSlotTypeSummaries = list(
list(
slotTypeSignature = "string",
description = "string"
)
),
nextToken = "string",
localeId = "string"
)
Request syntax¶
svc$list_built_in_slot_types(
localeId = "string",
sortBy = list(
attribute = "SlotTypeSignature",
order = "Ascending"|"Descending"
),
maxResults = 123,
nextToken = "string"
)