Skip to content

Get Catalog Import Status

glue_get_catalog_import_status R Documentation

Retrieves the status of a migration operation

Description

Retrieves the status of a migration operation.

Usage

glue_get_catalog_import_status(CatalogId)

Arguments

CatalogId

The ID of the catalog to migrate. Currently, this should be the Amazon Web Services account ID.

Value

A list with the following syntax:

list(
  ImportStatus = list(
    ImportCompleted = TRUE|FALSE,
    ImportTime = as.POSIXct(
      "2015-01-01"
    ),
    ImportedBy = "string"
  )
)

Request syntax

svc$get_catalog_import_status(
  CatalogId = "string"
)