data_source_sync_jobs
Creates, updates, deletes, gets or lists a data_source_sync_jobs resource.
Overview
| Name | data_source_sync_jobs |
| Type | Resource |
| Id | aws.kendra.data_source_sync_jobs |
Fields
The following fields are returned by SELECT queries:
- list_data_source_sync_jobs
| Name | Datatype | Description |
|---|---|---|
history | array | A history of synchronization jobs for the data source connector. |
next_token | string | If the response is truncated, Amazon Kendra returns this token that you can use in the subsequent request to retrieve the next set of jobs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_data_source_sync_jobs | select | region | Gets statistics about synchronizing a data source connector. |
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_data_source_sync_jobs
Gets statistics about synchronizing a data source connector.
SELECT
history,
next_token
FROM aws.kendra.data_source_sync_jobs
WHERE region = '{{ region }}' -- required
;