keywords_for_data_sources
Creates, updates, deletes, gets or lists a keywords_for_data_sources resource.
Overview
| Name | keywords_for_data_sources |
| Type | Resource |
| Id | aws.auditmanager.keywords_for_data_sources |
Fields
The following fields are returned by SELECT queries:
- list_keywords_for_data_source
| Name | Datatype | Description |
|---|---|---|
keyword | string | The list of keywords for the control mapping source. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_keywords_for_data_source | select | source, region | nextToken, maxResults | Returns a list of keywords that are pre-mapped to the specified control data source. |
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) |
source | string | The control mapping data source that the keywords apply to. |
maxResults | integer | Represents the maximum number of results on a page or for an API request call. |
nextToken | string | The pagination token that's used to fetch the next set of results. |
SELECT examples
- list_keywords_for_data_source
Returns a list of keywords that are pre-mapped to the specified control data source.
SELECT
keyword
FROM aws.auditmanager.keywords_for_data_sources
WHERE source = '{{ source }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;