DataAutomationforBedrock / Client / get_data_automation_library_ingestion_job
get_data_automation_library_ingestion_job¶
- DataAutomationforBedrock.Client.get_data_automation_library_ingestion_job(**kwargs)¶
API used to get status of data automation library ingestion job
See also: AWS API Documentation
Request Syntax
response = client.get_data_automation_library_ingestion_job( libraryArn='string', jobArn='string' )
- Parameters:
libraryArn (string) –
[REQUIRED]
ARN generated at the server side when a DataAutomationLibrary is created
jobArn (string) –
[REQUIRED]
ARN of the DataAutomationLibraryIngestionJob
- Return type:
dict
- Returns:
Response Syntax
{ 'job': { 'jobArn': 'string', 'creationTime': datetime(2015, 1, 1), 'entityType': 'VOCABULARY', 'operationType': 'UPSERT'|'DELETE', 'jobStatus': 'IN_PROGRESS'|'COMPLETED'|'COMPLETED_WITH_ERRORS'|'FAILED', 'outputConfiguration': { 's3Uri': 'string' }, 'completionTime': datetime(2015, 1, 1), 'errorMessage': 'string', 'errorType': 'string' } }
Response Structure
(dict) –
Get DataAutomationLibraryIngestionJob Response
job (dict) –
Contains the information of a library ingestion job
jobArn (string) –
ARN of the DataAutomationLibraryIngestionJob
creationTime (datetime) –
Timestamp when the DataAutomationLibraryIngestionJob was created
entityType (string) –
The entity type associated with DataAutomationLibraryIngestionJob
operationType (string) –
The operation associated with DataAutomationLibraryIngestionJob
jobStatus (string) –
The status of the DataAutomationLibraryIngestionJob
outputConfiguration (dict) –
Output configuration of DataAutomationLibraryIngestionJob
s3Uri (string) –
S3 Uri
completionTime (datetime) –
Timestamp when the DataAutomationLibraryIngestionJob was completed
errorMessage (string) –
Error message
errorType (string) –
Error type
Exceptions
DataAutomationforBedrock.Client.exceptions.ValidationExceptionDataAutomationforBedrock.Client.exceptions.InternalServerExceptionDataAutomationforBedrock.Client.exceptions.ThrottlingExceptionDataAutomationforBedrock.Client.exceptions.AccessDeniedExceptionDataAutomationforBedrock.Client.exceptions.ResourceNotFoundException