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¶
NetworkInsightsAccessScopeIds |
The IDs of the Network Access Scopes. |
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(
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"
)
Request syntax¶
svc$describe_network_insights_access_scopes(
NetworkInsightsAccessScopeIds = list(
"string"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
DryRun = TRUE|FALSE,
NextToken = "string"
)