catalog_import_status
Creates, updates, deletes, gets or lists a catalog_import_status resource.
Overview
| Name | catalog_import_status |
| Type | Resource |
| Id | aws.glue.catalog_import_status |
Fields
The following fields are returned by SELECT queries:
- get_catalog_import_status
| Name | Datatype | Description |
|---|---|---|
import_completed | boolean | True if the migration has completed, or False otherwise. |
import_time | string (date-time) | The time that the migration was started. |
imported_by | string | The name of the person who initiated the migration. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\t]*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_catalog_import_status | select | region | Retrieves the status of a migration operation. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_catalog_import_status
Retrieves the status of a migration operation.
SELECT
import_completed,
import_time,
imported_by
FROM aws.glue.catalog_import_status
WHERE region = '{{ region }}' -- required
;