List Data Automation Library Entities
| bedrockdataautomation_list_data_automation_library_entities | R Documentation |
Lists all stored entities in the library¶
Description¶
Lists all stored entities in the library
Usage¶
bedrockdataautomation_list_data_automation_library_entities(libraryArn,
entityType, maxResults, nextToken)
Arguments¶
libraryArn |
[required] ARN generated at the server side when a DataAutomationLibrary is created |
entityType |
[required] The entity type for which the entity list is requested |
maxResults |
Max Results |
nextToken |
Pagination token for retrieving the next set of results |
Value¶
A list with the following syntax:
list(
entities = list(
list(
vocabulary = list(
entityId = "string",
description = "string",
language = "EN"|"DE"|"ES"|"FR"|"IT"|"PT"|"JA"|"KO"|"CN"|"TW"|"HK",
numOfPhrases = 123,
lastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_data_automation_library_entities(
libraryArn = "string",
entityType = "VOCABULARY",
maxResults = 123,
nextToken = "string"
)