describe_vpc_endpoints
(**kwargs)¶Describes one or more Amazon OpenSearch Service-managed VPC endpoints.
See also: AWS API Documentation
Request Syntax
response = client.describe_vpc_endpoints(
VpcEndpointIds=[
'string',
]
)
[REQUIRED]
The unique identifiers of the endpoints to get information about.
{
'VpcEndpoints': [
{
'VpcEndpointId': 'string',
'VpcEndpointOwner': 'string',
'DomainArn': 'string',
'VpcOptions': {
'VPCId': 'string',
'SubnetIds': [
'string',
],
'AvailabilityZones': [
'string',
],
'SecurityGroupIds': [
'string',
]
},
'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED',
'Endpoint': 'string'
},
],
'VpcEndpointErrors': [
{
'VpcEndpointId': 'string',
'ErrorCode': 'ENDPOINT_NOT_FOUND'|'SERVER_ERROR',
'ErrorMessage': 'string'
},
]
}
Response Structure
Container for response parameters to the DescribeVpcEndpoints
operation. Returns a list containing configuration details and status of the VPC Endpoints as well as a list containing error responses of the endpoints that could not be described
Information about each requested VPC endpoint.
The connection endpoint for connecting to an Amazon OpenSearch Service domain through a proxy.
The unique identifier of the endpoint.
The creator of the endpoint.
The Amazon Resource Name (ARN) of the domain associated with the endpoint.
Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.
The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.
Specifies the subnets for VPC endpoint.
The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.
Specifies the security groups for VPC endpoint.
The current status of the endpoint.
The connection endpoint ID for connecting to the domain.
Any errors associated with the request.
Error information when attempting to describe an Amazon OpenSearch Service-managed VPC endpoint.
The unique identifier of the endpoint.
The code associated with the error.
A message describing the error.
Exceptions
ElasticsearchService.Client.exceptions.ValidationException
ElasticsearchService.Client.exceptions.InternalException
ElasticsearchService.Client.exceptions.DisabledOperationException
ElasticsearchService.Client.exceptions.BaseException