network_insights_access_scope_analyses
Creates, updates, deletes, gets or lists a network_insights_access_scope_analyses resource.
Overview
| Name | network_insights_access_scope_analyses |
| Type | Resource |
| Id | aws.ec2.network_insights_access_scope_analyses |
Fields
The following fields are returned by SELECT queries:
- describe_network_insights_access_scope_analyses
| Name | Datatype | Description |
|---|---|---|
analyzed_eni_count | integer | The number of network interfaces analyzed. |
end_date | string | The analysis end date. |
findings_found | string | Indicates whether there are findings. |
network_insights_access_scope_analysis_arn | string | The Amazon Resource Name (ARN) of the Network Access Scope analysis. |
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. |
start_date | string | The analysis start date. |
status | string | The status. |
status_message | string | The status message. |
tags | string | The tags. |
warning_message | string | The warning message. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_network_insights_access_scope_analyses | select | region | NetworkInsightsAccessScopeAnalysisId, NetworkInsightsAccessScopeId, AnalysisStartTimeBegin, AnalysisStartTimeEnd, Filter, MaxResults, DryRun, NextToken | Describes 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
AnalysisStartTimeBegin | string (date-time) | Filters the results based on the start time. The analysis must have started on or after this time. |
AnalysisStartTimeEnd | string (date-time) | Filters the results based on the start time. The analysis must have started on or before this time. |
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. |
Filter | array | There are no supported filters. |
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. |
NetworkInsightsAccessScopeAnalysisId | array | The IDs of the Network Access Scope analyses. |
NetworkInsightsAccessScopeId | string | The ID of the Network Access Scope. |
NextToken | string | The token for the next page of results. |
SELECT examples
- describe_network_insights_access_scope_analyses
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 }}'
;