data_automation_library_entities
Creates, updates, deletes, gets or lists a data_automation_library_entities resource.
Overview
| Name | data_automation_library_entities |
| Type | Resource |
| Id | aws.bedrock_data_automation.data_automation_library_entities |
Fields
The following fields are returned by SELECT queries:
- get_data_automation_library_entity
- list_data_automation_library_entities
| Name | Datatype | Description |
|---|---|---|
vocabulary | object | Vocabulary entity with detailed information |
| Name | Datatype | Description |
|---|---|---|
vocabulary | object | Summary of a Vocabulary entity |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_data_automation_library_entity | select | library_arn, entity_type, entity_id, region | Gets an existing entity based on entity type from the library | |
list_data_automation_library_entities | select | library_arn, entity_type, region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
entity_id | string | Unique identifier for the entity |
entity_type | string | The entity type for which the entity list is requested |
library_arn | string | ARN generated at the server side when a DataAutomationLibrary is created |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_data_automation_library_entity
- list_data_automation_library_entities
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
;
Lists all stored entities in 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 region = '{{ region }}' -- required
;