Skip to main content

network_insights_access_scope_analyses

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

Overview

Namenetwork_insights_access_scope_analyses
TypeResource
Idaws.ec2.network_insights_access_scope_analyses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
analyzed_eni_countintegerThe number of network interfaces analyzed.
end_datestringThe analysis end date.
findings_foundstringIndicates whether there are findings.
network_insights_access_scope_analysis_arnstringThe Amazon Resource Name (ARN) of the Network Access Scope analysis.
network_insights_access_scope_analysis_idstringThe ID of the Network Access Scope analysis.
network_insights_access_scope_idstringThe ID of the Network Access Scope.
start_datestringThe analysis start date.
statusstringThe status.
status_messagestringThe status message.
tagsstringThe tags.
warning_messagestringThe warning message.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_network_insights_access_scope_analysesselectregionNetworkInsightsAccessScopeAnalysisId, NetworkInsightsAccessScopeId, AnalysisStartTimeBegin, AnalysisStartTimeEnd, Filter, MaxResults, DryRun, NextTokenDescribes the specified Network Access Scope analyses.

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)
AnalysisStartTimeBeginstring (date-time)Filters the results based on the start time. The analysis must have started on or after this time.
AnalysisStartTimeEndstring (date-time)Filters the results based on the start time. The analysis must have started on or before this time.
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.
FilterarrayThere are no supported filters.
MaxResultsintegerThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
NetworkInsightsAccessScopeAnalysisIdarrayThe IDs of the Network Access Scope analyses.
NetworkInsightsAccessScopeIdstringThe ID of the Network Access Scope.
NextTokenstringThe token for the next page of results.

SELECT examples

Describes the specified Network Access Scope analyses.

SELECT
analyzed_eni_count,
end_date,
findings_found,
network_insights_access_scope_analysis_arn,
network_insights_access_scope_analysis_id,
network_insights_access_scope_id,
start_date,
status,
status_message,
tags,
warning_message
FROM aws.ec2.network_insights_access_scope_analyses
WHERE region = '{{ region }}' -- required
AND NetworkInsightsAccessScopeAnalysisId = '{{ NetworkInsightsAccessScopeAnalysisId }}'
AND NetworkInsightsAccessScopeId = '{{ NetworkInsightsAccessScopeId }}'
AND AnalysisStartTimeBegin = '{{ AnalysisStartTimeBegin }}'
AND AnalysisStartTimeEnd = '{{ AnalysisStartTimeEnd }}'
AND Filter = '{{ Filter }}'
AND MaxResults = '{{ MaxResults }}'
AND DryRun = '{{ DryRun }}'
AND NextToken = '{{ NextToken }}'
;