Skip to main content

finding_recommendations

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

Overview

Namefinding_recommendations
TypeResource
Idaws.accessanalyzer.finding_recommendations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
unused_permissions_recommended_stepobjectA recommended step for an unused permissions finding.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_finding_recommendationselectanalyzerArn, id, regionmaxResults, nextTokenRetrieves information about a finding recommendation for the specified analyzer.

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
analyzerArnstringThe ARN of the analyzer used to generate the finding recommendation.
idstringThe unique ID for the finding recommendation.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return in the response.
nextTokenstringA token used for pagination of results returned.

SELECT examples

Retrieves information about a finding recommendation for the specified analyzer.

SELECT
unused_permissions_recommended_step
FROM aws.accessanalyzer.finding_recommendations
WHERE analyzerArn = '{{ analyzerArn }}' -- required
AND id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;