network_insights_access_scope_analysis_findings
Creates, updates, deletes, gets or lists a network_insights_access_scope_analysis_findings resource.
Overview
| Name | network_insights_access_scope_analysis_findings |
| Type | Resource |
| Id | aws.ec2.network_insights_access_scope_analysis_findings |
Fields
The following fields are returned by SELECT queries:
- get_network_insights_access_scope_analysis_findings
| Name | Datatype | Description |
|---|---|---|
finding_components | string | The finding components. |
finding_id | string | The ID of the finding. |
network_insights_access_scope_analysis_id | string | The ID of the Network Access Scope analysis. |
network_insights_access_scope_id | string | The ID of the Network Access Scope. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_network_insights_access_scope_analysis_findings | select | NetworkInsightsAccessScopeAnalysisId, region | MaxResults, NextToken, DryRun | Gets the findings for the specified Network Access Scope analysis. |
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 |
|---|---|---|
NetworkInsightsAccessScopeAnalysisId | string | The ID of the Network Access Scope analysis. |
region | string | AWS region (default: us-east-1) |
DryRun | boolean | Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation. |
MaxResults | integer | The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. |
NextToken | string | The token for the next page of results. |
SELECT examples
- get_network_insights_access_scope_analysis_findings
Gets the findings for the specified Network Access Scope analysis.
SELECT
finding_components,
finding_id,
network_insights_access_scope_analysis_id,
network_insights_access_scope_id
FROM aws.ec2.network_insights_access_scope_analysis_findings
WHERE NetworkInsightsAccessScopeAnalysisId = '{{ NetworkInsightsAccessScopeAnalysisId }}' -- required
AND region = '{{ region }}' -- required
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
AND DryRun = '{{ DryRun }}'
;