Describe Network Insights Access Scope Analyses
| ec2_describe_network_insights_access_scope_analyses | R Documentation |
Describes the specified Network Access Scope analyses¶
Description¶
Describes the specified Network Access Scope analyses.
Usage¶
ec2_describe_network_insights_access_scope_analyses(
NetworkInsightsAccessScopeAnalysisIds, NetworkInsightsAccessScopeId,
AnalysisStartTimeBegin, AnalysisStartTimeEnd, Filters, MaxResults,
DryRun, NextToken)
Arguments¶
NetworkInsightsAccessScopeAnalysisIdsThe IDs of the Network Access Scope analyses.
NetworkInsightsAccessScopeIdThe ID of the Network Access Scope.
AnalysisStartTimeBeginFilters the results based on the start time. The analysis must have started on or after this time.
AnalysisStartTimeEndFilters the results based on the start time. The analysis must have started on or before this time.
FiltersThere are no supported filters.
MaxResultsThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextTokenvalue.DryRunChecks 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 isUnauthorizedOperation.NextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
NetworkInsightsAccessScopeAnalyses = list(
list(
NetworkInsightsAccessScopeAnalysisId = "string",
NetworkInsightsAccessScopeAnalysisArn = "string",
NetworkInsightsAccessScopeId = "string",
Status = "running"|"succeeded"|"failed",
StatusMessage = "string",
WarningMessage = "string",
StartDate = as.POSIXct(
"2015-01-01"
),
EndDate = as.POSIXct(
"2015-01-01"
),
FindingsFound = "true"|"false"|"unknown",
AnalyzedEniCount = 123,
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_network_insights_access_scope_analyses(
NetworkInsightsAccessScopeAnalysisIds = list(
"string"
),
NetworkInsightsAccessScopeId = "string",
AnalysisStartTimeBegin = as.POSIXct(
"2015-01-01"
),
AnalysisStartTimeEnd = as.POSIXct(
"2015-01-01"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
DryRun = TRUE|FALSE,
NextToken = "string"
)