Describe Verified Access Instances
ec2_describe_verified_access_instances | R Documentation |
Describes the specified Amazon Web Services Verified Access instances¶
Description¶
Describes the specified Amazon Web Services Verified Access instances.
Usage¶
ec2_describe_verified_access_instances(VerifiedAccessInstanceIds,
MaxResults, NextToken, Filters, DryRun)
Arguments¶
VerifiedAccessInstanceIds |
The IDs of the Verified Access instances. |
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(
VerifiedAccessInstances = list(
list(
VerifiedAccessInstanceId = "string",
Description = "string",
VerifiedAccessTrustProviders = list(
list(
VerifiedAccessTrustProviderId = "string",
Description = "string",
TrustProviderType = "user"|"device",
UserTrustProviderType = "iam-identity-center"|"oidc",
DeviceTrustProviderType = "jamf"|"crowdstrike"|"jumpcloud"
)
),
CreationTime = "string",
LastUpdatedTime = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
FipsEnabled = TRUE|FALSE,
CidrEndpointsCustomSubDomain = list(
SubDomain = "string",
Nameservers = list(
"string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_verified_access_instances(
VerifiedAccessInstanceIds = list(
"string"
),
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
DryRun = TRUE|FALSE
)