Skip to main content

vpc_endpoints_for_domains

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

Overview

Namevpc_endpoints_for_domains
TypeResource
Idaws.es.vpc_endpoints_for_domains

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringPaginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results.
vpc_endpoint_summary_listarrayProvides list of VpcEndpointSummary summarizing details of the VPC endpoints.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_vpc_endpoints_for_domainselectdomain_name, regionnextTokenRetrieves all Amazon OpenSearch Service-managed VPC endpoints associated with a particular domain.

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
domain_namestringName of the ElasticSearch domain whose VPC endpoints are to be listed.
regionstringAWS region (default: us-east-1)
nextTokenstringProvides an identifier to allow retrieval of paginated results.

SELECT examples

Retrieves all Amazon OpenSearch Service-managed VPC endpoints associated with a particular domain.

SELECT
next_token,
vpc_endpoint_summary_list
FROM aws.es.vpc_endpoints_for_domains
WHERE domain_name = '{{ domain_name }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
;