Skip to main content

verified_access_endpoint_targets

Creates, updates, deletes, gets or lists a verified_access_endpoint_targets resource.

Overview

Nameverified_access_endpoint_targets
TypeResource
Idaws.ec2.verified_access_endpoint_targets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
verified_access_endpoint_idstringThe ID of the Verified Access endpoint.
verified_access_endpoint_target_dnsstringThe DNS name of the target.
verified_access_endpoint_target_ip_addressstringThe IP address of the target.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_verified_access_endpoint_targetsselectVerifiedAccessEndpointId, regionMaxResults, NextToken, DryRunGets the targets for the specified network CIDR endpoint for Verified Access.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
VerifiedAccessEndpointIdstringThe ID of the network CIDR endpoint.
regionstringAWS region (default: us-east-1)
DryRunbooleanChecks 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 is UnauthorizedOperation.
MaxResultsintegerThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
NextTokenstringThe token for the next page of results.

SELECT examples

Gets the targets for the specified network CIDR endpoint for Verified Access.

SELECT
verified_access_endpoint_id,
verified_access_endpoint_target_dns,
verified_access_endpoint_target_ip_address
FROM aws.ec2.verified_access_endpoint_targets
WHERE VerifiedAccessEndpointId = '{{ VerifiedAccessEndpointId }}' -- required
AND region = '{{ region }}' -- required
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
AND DryRun = '{{ DryRun }}'
;