Get Verified Access Endpoint Targets
ec2_get_verified_access_endpoint_targets | R Documentation |
Gets the targets for the specified network CIDR endpoint for Verified Access¶
Description¶
Gets the targets for the specified network CIDR endpoint for Verified Access.
Usage¶
ec2_get_verified_access_endpoint_targets(VerifiedAccessEndpointId,
MaxResults, NextToken, DryRun)
Arguments¶
VerifiedAccessEndpointId |
[required] The ID of the network CIDR endpoint. |
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. |
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(
VerifiedAccessEndpointTargets = list(
list(
VerifiedAccessEndpointId = "string",
VerifiedAccessEndpointTargetIpAddress = "string",
VerifiedAccessEndpointTargetDns = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$get_verified_access_endpoint_targets(
VerifiedAccessEndpointId = "string",
MaxResults = 123,
NextToken = "string",
DryRun = TRUE|FALSE
)