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¶
NetworkInsightsAccessScopeAnalysisIds |
The IDs of the Network Access Scope analyses. |
NetworkInsightsAccessScopeId |
The ID of the Network Access Scope. |
AnalysisStartTimeBegin |
Filters the results based on the start time. The analysis must have started on or after this time. |
AnalysisStartTimeEnd |
Filters the results based on the start time. The analysis must have started on or before this time. |
Filters |
There are no supported filters. |
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
DryRun |
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
|
NextToken |
The 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"
)