ClientAffinity
- class aws_cdk.aws_globalaccelerator.ClientAffinity(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
Bases:
Enum
Client affinity gives you control over whether to always route each client to the same specific endpoint.
Attributes
- NONE
Route traffic based on the 5-tuple
(source IP, source port, destination IP, destination port, protocol)
.
- SOURCE_IP
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.