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.opensearch.vpc_endpoints_for_domains

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringWhen nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Send the request again using the returned token to retrieve the next page.
vpc_endpoint_summary_listarrayInformation about each endpoint associated with the domain.

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_namestringThe name of the domain to list associated VPC endpoints for.
regionstringAWS region (default: us-east-1)
nextTokenstringIf your initial ListEndpointsForDomain operation returns a nextToken, you can include the returned nextToken in subsequent ListEndpointsForDomain operations, which returns results in the next page.

SELECT examples

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

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