Skip to main content

network_insights_access_scope_analysis_findings

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

Overview

Namenetwork_insights_access_scope_analysis_findings
TypeResource
Idaws.ec2.network_insights_access_scope_analysis_findings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
finding_componentsstringThe finding components.
finding_idstringThe ID of the finding.
network_insights_access_scope_analysis_idstringThe ID of the Network Access Scope analysis.
network_insights_access_scope_idstringThe ID of the Network Access Scope.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_network_insights_access_scope_analysis_findingsselectNetworkInsightsAccessScopeAnalysisId, regionMaxResults, NextToken, DryRunGets 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.

NameDatatypeDescription
NetworkInsightsAccessScopeAnalysisIdstringThe ID of the Network Access Scope analysis.
regionstringAWS region (default: us-east-1)
DryRunbooleanChecks 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.
MaxResultsintegerThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
NextTokenstringThe token for the next page of results.

SELECT examples

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