Get Data Automation Library
| bedrockdataautomation_get_data_automation_library | R Documentation |
Gets an existing Amazon Bedrock Data Automation Library¶
Description¶
Gets an existing Amazon Bedrock Data Automation Library
Usage¶
bedrockdataautomation_get_data_automation_library(libraryArn)
Arguments¶
libraryArn |
[required] ARN generated at the server side when a DataAutomationLibrary is created |
Value¶
A list with the following syntax:
list(
library = list(
libraryArn = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
libraryName = "string",
libraryDescription = "string",
status = "ACTIVE"|"DELETING",
entityTypes = list(
list(
entityType = "VOCABULARY",
entityMetadata = "string"
)
),
kmsKeyId = "string",
kmsEncryptionContext = list(
"string"
)
)
)
Request syntax¶
svc$get_data_automation_library(
libraryArn = "string"
)