List Custom Entity Types
glue_list_custom_entity_types | R Documentation |
Lists all the custom patterns that have been created¶
Description¶
Lists all the custom patterns that have been created.
Usage¶
glue_list_custom_entity_types(NextToken, MaxResults, Tags)
Arguments¶
NextToken |
A paginated token to offset the results. |
MaxResults |
The maximum number of results to return. |
Tags |
A list of key-value pair tags. |
Value¶
A list with the following syntax:
list(
CustomEntityTypes = list(
list(
Name = "string",
RegexString = "string",
ContextWords = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_custom_entity_types(
NextToken = "string",
MaxResults = 123,
Tags = list(
"string"
)
)