Describe Network Insights Access Scopes
| ec2_describe_network_insights_access_scopes | R Documentation |
Describes the specified Network Access Scopes¶
Description¶
Describes the specified Network Access Scopes.
Usage¶
ec2_describe_network_insights_access_scopes(
NetworkInsightsAccessScopeIds, Filters, MaxResults, DryRun, NextToken)
Arguments¶
NetworkInsightsAccessScopeIdsThe IDs of the Network Access Scopes.
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(
NetworkInsightsAccessScopes = list(
list(
NetworkInsightsAccessScopeId = "string",
NetworkInsightsAccessScopeArn = "string",
CreatedDate = as.POSIXct(
"2015-01-01"
),
UpdatedDate = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)