Skip to main content

data_automation_library_ingestion_jobs

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

Overview

Namedata_automation_library_ingestion_jobs
TypeResource
Idaws.bedrock_data_automation.data_automation_library_ingestion_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
completion_timestring (date-time)Time Stamp
creation_timestring (date-time)Time Stamp
entity_typestringEntity types supported in DataAutomationLibraries (VOCABULARY)
error_messagestringError message
error_typestringError type
job_arnstringARN 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_statusstringThe status of the DataAutomationLibraryIngestionJob (IN_PROGRESS, COMPLETED, COMPLETED_WITH_ERRORS, FAILED)
operation_typestringThe operation associated with DataAutomationLibraryIngestionJob (UPSERT, DELETE)
output_configurationobjectOutput configuration of DataAutomationLibraryIngestionJob

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_data_automation_library_ingestion_jobselectlibrary_arn, job_arn, regionAPI used to get status of data automation library ingestion job
list_data_automation_library_ingestion_jobsselectlibrary_arn, regionLists 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.

NameDatatypeDescription
job_arnstringARN of the DataAutomationLibraryIngestionJob
library_arnstringARN generated at the server side when a DataAutomationLibrary is created
regionstringAWS region (default: us-east-1)

SELECT examples

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
;