Module: AWSCDK::GlobalAccelerator::ClientAffinity

Defined in:
global_accelerator/client_affinity.rb

Overview

Client affinity gives you control over whether to always route each client to the same specific endpoint.

Constant Summary collapse

NONE =
Deprecated.
Note:

Default:

Route traffic based on the 5-tuple (source IP, source port, destination IP, destination port, protocol).

Jsii::Enum.new("aws-cdk-lib.aws_globalaccelerator.ClientAffinity", "NONE")
SOURCE_IP =
Deprecated.
Note:

Default:

Route traffic based on the 2-tuple (source IP, destination IP).

The result is that multiple connections from the same client will be routed the same.

Jsii::Enum.new("aws-cdk-lib.aws_globalaccelerator.ClientAffinity", "SOURCE_IP")