vpc_endpoints_for_domains
Creates, updates, deletes, gets or lists a vpc_endpoints_for_domains resource.
Overview
| Name | vpc_endpoints_for_domains |
| Type | Resource |
| Id | aws.es.vpc_endpoints_for_domains |
Fields
The following fields are returned by SELECT queries:
- list_vpc_endpoints_for_domain
| Name | Datatype | Description |
|---|---|---|
next_token | string | Paginated 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_list | array | Provides list of VpcEndpointSummary summarizing details of the VPC endpoints. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_vpc_endpoints_for_domain | select | domain_name, region | nextToken | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
domain_name | string | Name of the ElasticSearch domain whose VPC endpoints are to be listed. |
region | string | AWS region (default: us-east-1) |
nextToken | string | Provides an identifier to allow retrieval of paginated results. |
SELECT examples
- list_vpc_endpoints_for_domain
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 }}'
;