Skip to main content

sources_for_s3_table_integrations

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

Overview

Namesources_for_s3_table_integrations
TypeResource
Idaws.logs.sources_for_s3_table_integrations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_time_stampinteger (int64)The timestamp when the data source association was created.
data_sourceobjectThe data source associated with the S3 Table Integration.
identifierstringThe unique identifier for this data source association.
parent_source_identifierstringThe identifier of the parent data source for this association.
statusstringThe current status of the data source association. (ACTIVE, UNHEALTHY, FAILED, DATA_SOURCE_DELETE_IN_PROGRESS)
status_reasonstringAdditional information about the status of the data source association.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_sources_for_s3_table_integrationselectregionReturns a list of data source associations for a specified S3 Table Integration, showing which data sources are currently associated for query access.

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

Returns a list of data source associations for a specified S3 Table Integration, showing which data sources are currently associated for query access.

SELECT
created_time_stamp,
data_source,
identifier,
parent_source_identifier,
status,
status_reason
FROM aws.logs.sources_for_s3_table_integrations
WHERE region = '{{ region }}' -- required
;