Describe Verified Access Groups
ec2_describe_verified_access_groups | R Documentation |
Describes the specified Verified Access groups¶
Description¶
Describes the specified Verified Access groups.
Usage¶
ec2_describe_verified_access_groups(VerifiedAccessGroupIds,
VerifiedAccessInstanceId, MaxResults, NextToken, Filters, DryRun)
Arguments¶
VerifiedAccessGroupIds |
The ID of the Verified Access groups. |
VerifiedAccessInstanceId |
The ID of the Verified Access instance. |
MaxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
NextToken |
The token for the next page of results. |
Filters |
One or more filters. Filter names and values are case-sensitive. |
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
|
Value¶
A list with the following syntax:
list(
VerifiedAccessGroups = list(
list(
VerifiedAccessGroupId = "string",
VerifiedAccessInstanceId = "string",
Description = "string",
Owner = "string",
VerifiedAccessGroupArn = "string",
CreationTime = "string",
LastUpdatedTime = "string",
DeletionTime = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
SseSpecification = list(
CustomerManagedKeyEnabled = TRUE|FALSE,
KmsKeyArn = "string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_verified_access_groups(
VerifiedAccessGroupIds = list(
"string"
),
VerifiedAccessInstanceId = "string",
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
DryRun = TRUE|FALSE
)