Skip to main content

namespace_deletion_status

Creates, updates, deletes, gets or lists a namespace_deletion_status resource.

Overview

Namenamespace_deletion_status
TypeResource
Idaws.iotthingsgraph.namespace_deletion_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
error_codestringAn error code returned by the namespace deletion task. (VALIDATION_FAILED)
error_messagestringAn error code returned by the namespace deletion task.
namespace_arnstringThe ARN of the namespace that is being deleted.
namespace_namestringThe name of the namespace that is being deleted.
statusstringThe status of the deletion request. (IN_PROGRESS, SUCCEEDED, FAILED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_namespace_deletion_statusselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;