Skip to main content

vpc_endpoint_service_names

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

Overview

Namevpc_endpoint_service_names
TypeResource
Idaws.dsql.vpc_endpoint_service_names

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
cluster_vpc_endpointstringThe VPC connection endpoint for the cluster. (pattern: <code>[a-zA-Z0-9.-]+</code>)
service_namestringThe VPC endpoint service name. (pattern: <code>com.amazonaws.[a-z0-9-]+.dsql-[a-f0-9]{6}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_vpc_endpoint_service_nameselectidentifier, regionRetrieves the VPC endpoint service name.

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
identifierstringThe ID of the cluster to retrieve.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the VPC endpoint service name.

SELECT
cluster_vpc_endpoint,
service_name
FROM aws.dsql.vpc_endpoint_service_names
WHERE identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
;