namespace_deletion_status
Creates, updates, deletes, gets or lists a namespace_deletion_status resource.
Overview
| Name | namespace_deletion_status |
| Type | Resource |
| Id | aws.iotthingsgraph.namespace_deletion_status |
Fields
The following fields are returned by SELECT queries:
- get_namespace_deletion_status
| Name | Datatype | Description |
|---|---|---|
error_code | string | An error code returned by the namespace deletion task. (VALIDATION_FAILED) |
error_message | string | An error code returned by the namespace deletion task. |
namespace_arn | string | The ARN of the namespace that is being deleted. |
namespace_name | string | The name of the namespace that is being deleted. |
status | string | The status of the deletion request. (IN_PROGRESS, SUCCEEDED, FAILED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_namespace_deletion_status | select | region | Gets the status of a namespace deletion task. |
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_namespace_deletion_status
Gets the status of a namespace deletion task.
SELECT
error_code,
error_message,
namespace_arn,
namespace_name,
status
FROM aws.iotthingsgraph.namespace_deletion_status
WHERE region = '{{ region }}' -- required
;