Skip to content

Get Data Automation Library Entity

bedrockdataautomation_get_data_automation_library_entity R Documentation

Gets an existing entity based on entity type from the library

Description

Gets an existing entity based on entity type from the library

Usage

bedrockdataautomation_get_data_automation_library_entity(libraryArn,
  entityType, entityId)

Arguments

libraryArn

[required] ARN generated at the server side when a DataAutomationLibrary is created

entityType

[required] The entity type for which the entity is requested

entityId

[required] Unique identifier for the entity

Value

A list with the following syntax:

list(
  entity = list(
    vocabulary = list(
      entityId = "string",
      description = "string",
      language = "EN"|"DE"|"ES"|"FR"|"IT"|"PT"|"JA"|"KO"|"CN"|"TW"|"HK",
      phrases = list(
        list(
          text = "string",
          displayAsText = "string"
        )
      ),
      lastModifiedTime = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$get_data_automation_library_entity(
  libraryArn = "string",
  entityType = "VOCABULARY",
  entityId = "string"
)