Skip to main content

keywords_for_data_sources

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

Overview

Namekeywords_for_data_sources
TypeResource
Idaws.auditmanager.keywords_for_data_sources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
keywordstringThe list of keywords for the control mapping source.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_keywords_for_data_sourceselectsource, regionnextToken, maxResultsReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
sourcestringThe control mapping data source that the keywords apply to.
maxResultsintegerRepresents the maximum number of results on a page or for an API request call.
nextTokenstringThe pagination token that's used to fetch the next set of results.

SELECT examples

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 }}'
;