data_automation_library_ingestion_jobs
Creates, updates, deletes, gets or lists a data_automation_library_ingestion_jobs resource.
Overview
| Name | data_automation_library_ingestion_jobs |
| Type | Resource |
| Id | aws.bedrock_data_automation.data_automation_library_ingestion_jobs |
Fields
The following fields are returned by SELECT queries:
- get_data_automation_library_ingestion_job
- list_data_automation_library_ingestion_jobs
| Name | Datatype | Description |
|---|---|---|
completion_time | string (date-time) | Time Stamp |
creation_time | string (date-time) | Time Stamp |
entity_type | string | Entity types supported in DataAutomationLibraries (VOCABULARY) |
error_message | string | Error message |
error_type | string | Error type |
job_arn | string | ARN of the DataAutomationLibraryIngestionJob (pattern: <code>arn:aws(|-cn|-iso|-iso-[a-z]|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:data-automation-library-ingestion-job/[a-zA-Z0-9-]{12,36}</code>) |
job_status | string | The status of the DataAutomationLibraryIngestionJob (IN_PROGRESS, COMPLETED, COMPLETED_WITH_ERRORS, FAILED) |
operation_type | string | The operation associated with DataAutomationLibraryIngestionJob (UPSERT, DELETE) |
output_configuration | object | Output configuration of DataAutomationLibraryIngestionJob |
| Name | Datatype | Description |
|---|---|---|
completion_time | string (date-time) | Time Stamp |
creation_time | string (date-time) | Time Stamp |
entity_type | string | Entity types supported in DataAutomationLibraries (VOCABULARY) |
job_arn | string | ARN of the DataAutomationLibraryIngestionJob (pattern: <code>arn:aws(|-cn|-iso|-iso-[a-z]|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:data-automation-library-ingestion-job/[a-zA-Z0-9-]{12,36}</code>) |
job_status | string | Status of DataAutomationLibraryIngestionJob (IN_PROGRESS, COMPLETED, COMPLETED_WITH_ERRORS, FAILED) |
operation_type | string | DataAutomationLibraryIngestionJob operation type (UPSERT, DELETE) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_data_automation_library_ingestion_job | select | library_arn, job_arn, region | API used to get status of data automation library ingestion job | |
list_data_automation_library_ingestion_jobs | select | library_arn, region | Lists all data automation library ingestion jobs |
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 |
|---|---|---|
job_arn | string | ARN of the DataAutomationLibraryIngestionJob |
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_ingestion_job
- list_data_automation_library_ingestion_jobs
API used to get status of data automation library ingestion job
SELECT
completion_time,
creation_time,
entity_type,
error_message,
error_type,
job_arn,
job_status,
operation_type,
output_configuration
FROM aws.bedrock_data_automation.data_automation_library_ingestion_jobs
WHERE library_arn = '{{ library_arn }}' -- required
AND job_arn = '{{ job_arn }}' -- required
AND region = '{{ region }}' -- required
;
Lists all data automation library ingestion jobs
SELECT
completion_time,
creation_time,
entity_type,
job_arn,
job_status,
operation_type
FROM aws.bedrock_data_automation.data_automation_library_ingestion_jobs
WHERE library_arn = '{{ library_arn }}' -- required
AND region = '{{ region }}' -- required
;