batch_delete_configuration_tasks
Creates, updates, deletes, gets or lists a batch_delete_configuration_tasks resource.
Overview
| Name | batch_delete_configuration_tasks |
| Type | Resource |
| Id | aws.discovery.batch_delete_configuration_tasks |
Fields
The following fields are returned by SELECT queries:
- describe_batch_delete_configuration_task
| Name | Datatype | Description |
|---|---|---|
configuration_type | string | The type of configuration item to delete. Supported types are: SERVER. (SERVER) |
deleted_configurations | array | The list of configuration IDs that were successfully deleted by the deletion task. |
deletion_warnings | array | A list of configuration IDs that produced warnings regarding their deletion, paired with a warning message. |
end_time | string (date-time) | An epoch seconds timestamp (UTC) of when the deletion task was completed or failed. |
failed_configurations | array | A list of configuration IDs that failed to delete during the deletion task, each paired with an error message. |
requested_configurations | array | The list of configuration IDs that were originally requested to be deleted by the deletion task. |
start_time | string (date-time) | An epoch seconds timestamp (UTC) of when the deletion task was started. |
status | string | The current execution status of the deletion task. Valid status are: INITIALIZING | VALIDATING | DELETING | COMPLETED | FAILED. (INITIALIZING, VALIDATING, DELETING, COMPLETED, FAILED) |
task_id | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_batch_delete_configuration_task | select | region | Takes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_batch_delete_configuration_task
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
;