EC2 / Client / get_verified_access_endpoint_targets
get_verified_access_endpoint_targets#
- EC2.Client.get_verified_access_endpoint_targets(**kwargs)#
Gets the targets for the specified network CIDR endpoint for Verified Access.
See also: AWS API Documentation
Request Syntax
response = client.get_verified_access_endpoint_targets( VerifiedAccessEndpointId='string', MaxResults=123, NextToken='string', DryRun=True|False )
- Parameters:
VerifiedAccessEndpointId (string) –
[REQUIRED]
The ID of the network CIDR endpoint.
MaxResults (integer) – The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextToken
value.NextToken (string) – The token for the next page of results.
DryRun (boolean) – 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
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.
- Return type:
dict
- Returns:
Response Syntax
{ 'VerifiedAccessEndpointTargets': [ { 'VerifiedAccessEndpointId': 'string', 'VerifiedAccessEndpointTargetIpAddress': 'string', 'VerifiedAccessEndpointTargetDns': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
VerifiedAccessEndpointTargets (list) –
The Verified Access targets.
(dict) –
Describes the targets for the specified Verified Access endpoint.
VerifiedAccessEndpointId (string) –
The ID of the Verified Access endpoint.
VerifiedAccessEndpointTargetIpAddress (string) –
The IP address of the target.
VerifiedAccessEndpointTargetDns (string) –
The DNS name of the target.
NextToken (string) –
The token to use to retrieve the next page of results. This value is
null
when there are no more results to return.