finding_recommendations
Creates, updates, deletes, gets or lists a finding_recommendations resource.
Overview
| Name | finding_recommendations |
| Type | Resource |
| Id | aws.accessanalyzer.finding_recommendations |
Fields
The following fields are returned by SELECT queries:
- get_finding_recommendation
| Name | Datatype | Description |
|---|---|---|
unused_permissions_recommended_step | object | A recommended step for an unused permissions finding. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_finding_recommendation | select | analyzerArn, id, region | maxResults, nextToken | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
analyzerArn | string | The ARN of the analyzer used to generate the finding recommendation. |
id | string | The unique ID for the finding recommendation. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return in the response. |
nextToken | string | A token used for pagination of results returned. |
SELECT examples
- get_finding_recommendation
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 }}'
;