Skip to main content

batch_delete_configuration_tasks

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

Overview

Namebatch_delete_configuration_tasks
TypeResource
Idaws.discovery.batch_delete_configuration_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
configuration_typestringThe type of configuration item to delete. Supported types are: SERVER. (SERVER)
deleted_configurationsarrayThe list of configuration IDs that were successfully deleted by the deletion task.
deletion_warningsarrayA list of configuration IDs that produced warnings regarding their deletion, paired with a warning message.
end_timestring (date-time)An epoch seconds timestamp (UTC) of when the deletion task was completed or failed.
failed_configurationsarrayA list of configuration IDs that failed to delete during the deletion task, each paired with an error message.
requested_configurationsarrayThe list of configuration IDs that were originally requested to be deleted by the deletion task.
start_timestring (date-time)An epoch seconds timestamp (UTC) of when the deletion task was started.
statusstringThe current execution status of the deletion task. Valid status are: INITIALIZING | VALIDATING | DELETING | COMPLETED | FAILED. (INITIALIZING, VALIDATING, DELETING, COMPLETED, FAILED)
task_idstringThe deletion task's unique identifier. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_batch_delete_configuration_taskselectregionTakes a unique deletion task identifier as input and returns metadata about a configuration 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

Takes a unique deletion task identifier as input and returns metadata about a configuration deletion task.

SELECT
configuration_type,
deleted_configurations,
deletion_warnings,
end_time,
failed_configurations,
requested_configurations,
start_time,
status,
task_id
FROM aws.discovery.batch_delete_configuration_tasks
WHERE region = '{{ region }}' -- required
;