verified_access_endpoint_targets
Creates, updates, deletes, gets or lists a verified_access_endpoint_targets resource.
Overview
| Name | verified_access_endpoint_targets |
| Type | Resource |
| Id | aws.ec2.verified_access_endpoint_targets |
Fields
The following fields are returned by SELECT queries:
- get_verified_access_endpoint_targets
| Name | Datatype | Description |
|---|---|---|
verified_access_endpoint_id | string | The ID of the Verified Access endpoint. |
verified_access_endpoint_target_dns | string | The DNS name of the target. |
verified_access_endpoint_target_ip_address | string | The IP address of the target. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_verified_access_endpoint_targets | select | VerifiedAccessEndpointId, region | MaxResults, NextToken, DryRun | Gets 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.
| Name | Datatype | Description |
|---|---|---|
VerifiedAccessEndpointId | string | The ID of the network CIDR endpoint. |
region | string | AWS region (default: us-east-1) |
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 is UnauthorizedOperation. |
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. |
SELECT examples
- get_verified_access_endpoint_targets
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 }}'
;