Skip to content

Get Import Job

connectwisdomservice_get_import_job R Documentation

Retrieves the started import job

Description

Retrieves the started import job.

Usage

connectwisdomservice_get_import_job(importJobId, knowledgeBaseId)

Arguments

importJobId

[required] The identifier of the import job to retrieve.

knowledgeBaseId

[required] The identifier of the knowledge base that the import job belongs to.

Value

A list with the following syntax:

list(
  importJob = list(
    createdTime = as.POSIXct(
      "2015-01-01"
    ),
    externalSourceConfiguration = list(
      configuration = list(
        connectConfiguration = list(
          instanceId = "string"
        )
      ),
      source = "AMAZON_CONNECT"
    ),
    failedRecordReport = "string",
    importJobId = "string",
    importJobType = "QUICK_RESPONSES",
    knowledgeBaseArn = "string",
    knowledgeBaseId = "string",
    lastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    metadata = list(
      "string"
    ),
    status = "START_IN_PROGRESS"|"FAILED"|"COMPLETE"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED",
    uploadId = "string",
    url = "string",
    urlExpiry = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$get_import_job(
  importJobId = "string",
  knowledgeBaseId = "string"
)