sources_for_s3_table_integrations
Creates, updates, deletes, gets or lists a sources_for_s3_table_integrations resource.
Overview
| Name | sources_for_s3_table_integrations |
| Type | Resource |
| Id | aws.logs.sources_for_s3_table_integrations |
Fields
The following fields are returned by SELECT queries:
- list_sources_for_s3_table_integration
| Name | Datatype | Description |
|---|---|---|
created_time_stamp | integer (int64) | The timestamp when the data source association was created. |
data_source | object | The data source associated with the S3 Table Integration. |
identifier | string | The unique identifier for this data source association. |
parent_source_identifier | string | The identifier of the parent data source for this association. |
status | string | The current status of the data source association. (ACTIVE, UNHEALTHY, FAILED, DATA_SOURCE_DELETE_IN_PROGRESS) |
status_reason | string | Additional information about the status of the data source association. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_sources_for_s3_table_integration | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_sources_for_s3_table_integration
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
;