Skip to main content

import_task_batches

Creates, updates, deletes, gets or lists an import_task_batches resource.

Overview

Nameimport_task_batches
TypeResource
Idaws.logs.import_task_batches

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
import_batchesarrayThe list of import batches that match the request filters.
import_idstringThe ID of the import task. (pattern: <code>[-a-zA-Z0-9]+</code>)
import_source_arnstringThe ARN of the source being imported from.
next_tokenstringThe token for the next set of items to return. The token expires after 24 hours.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_import_task_batchesselectregionGets detailed information about the individual batches within an import task, including their status and any error messages. For CloudTrail Event Data Store sources, a batch refers to a subset of stored events grouped by their eventTime.

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 detailed information about the individual batches within an import task, including their status and any error messages. For CloudTrail Event Data Store sources, a batch refers to a subset of stored events grouped by their eventTime.

SELECT
import_batches,
import_id,
import_source_arn,
next_token
FROM aws.logs.import_task_batches
WHERE region = '{{ region }}' -- required
;