Skip to main content

data_automation_library_entities

Creates, updates, deletes, gets or lists a data_automation_library_entities resource.

Overview

Namedata_automation_library_entities
TypeResource
Idaws.bedrock_data_automation.data_automation_library_entities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
vocabularyobjectVocabulary entity with detailed information

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_data_automation_library_entityselectlibrary_arn, entity_type, entity_id, regionGets an existing entity based on entity type from the library
list_data_automation_library_entitiesselectlibrary_arn, entity_type, regionLists all stored entities in the library

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
entity_idstringUnique identifier for the entity
entity_typestringThe entity type for which the entity list is requested
library_arnstringARN generated at the server side when a DataAutomationLibrary is created
regionstringAWS region (default: us-east-1)

SELECT examples

Gets an existing entity based on entity type from the library

SELECT
vocabulary
FROM aws.bedrock_data_automation.data_automation_library_entities
WHERE library_arn = '{{ library_arn }}' -- required
AND entity_type = '{{ entity_type }}' -- required
AND entity_id = '{{ entity_id }}' -- required
AND region = '{{ region }}' -- required
;