list_vpc_endpoints_for_domain

ElasticsearchService.Client.list_vpc_endpoints_for_domain(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.list_vpc_endpoints_for_domain(
    DomainName='string',
    NextToken='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    Name of the ElasticSearch domain whose VPC endpoints are to be listed.

  • NextToken (string) -- Provides an identifier to allow retrieval of paginated results.
Return type

dict

Returns

Response Syntax

{
    'VpcEndpointSummaryList': [
        {
            'VpcEndpointId': 'string',
            'VpcEndpointOwner': 'string',
            'DomainArn': 'string',
            'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response parameters to the ListVpcEndpointsForDomain operation. Returns a list containing summarized details of the VPC endpoints.

    • VpcEndpointSummaryList (list) --

      Provides list of VpcEndpointSummary summarizing details of the VPC endpoints.

      • (dict) --

        Summary information for an Amazon OpenSearch Service-managed VPC endpoint.

        • VpcEndpointId (string) --

          The unique identifier of the endpoint.

        • VpcEndpointOwner (string) --

          The creator of the endpoint.

        • DomainArn (string) --

          The Amazon Resource Name (ARN) of the domain associated with the endpoint.

        • Status (string) --

          The current status of the endpoint.

    • NextToken (string) --

      Information about each endpoint associated with the domain.

Exceptions

  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.BaseException