Skip to content

Get Data Automation Library Ingestion Job

bedrockdataautomation_get_data_automation_library_ingestion_job R Documentation

API used to get status of data automation library ingestion job

Description

API used to get status of data automation library ingestion job

Usage

bedrockdataautomation_get_data_automation_library_ingestion_job(
  libraryArn, jobArn)

Arguments

libraryArn

[required] ARN generated at the server side when a DataAutomationLibrary is created

jobArn

[required] ARN of the DataAutomationLibraryIngestionJob

Value

A list with the following syntax:

list(
  job = list(
    jobArn = "string",
    creationTime = as.POSIXct(
      "2015-01-01"
    ),
    entityType = "VOCABULARY",
    operationType = "UPSERT"|"DELETE",
    jobStatus = "IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERRORS"|"FAILED",
    outputConfiguration = list(
      s3Uri = "string"
    ),
    completionTime = as.POSIXct(
      "2015-01-01"
    ),
    errorMessage = "string",
    errorType = "string"
  )
)

Request syntax

svc$get_data_automation_library_ingestion_job(
  libraryArn = "string",
  jobArn = "string"
)