Module: AWSCDK::AppMesh::DNSResponseType

Defined in:
app_mesh/dns_response_type.rb

Overview

Enum of DNS service discovery response type.

Constant Summary collapse

LOAD_BALANCER =
Deprecated.
Note:

Default:

DNS resolver returns a loadbalanced set of endpoints and the traffic would be sent to the given endpoints.

It would not drain existing connections to other endpoints that are not part of this list.

Jsii::Enum.new("aws-cdk-lib.aws_appmesh.DnsResponseType", "LOAD_BALANCER")
ENDPOINTS =
Deprecated.
Note:

Default:

DNS resolver is returning all the endpoints.

This also means that if an endpoint is missing, it would drain the current connections to the missing endpoint.

Jsii::Enum.new("aws-cdk-lib.aws_appmesh.DnsResponseType", "ENDPOINTS")