Module: AWSCDK::ElasticLoadBalancingv2::XffHeaderProcessingMode
- Defined in:
- elastic_load_balancingv2/xff_header_processing_mode.rb
Overview
Processing mode of the X-Forwarded-For header in the HTTP request before the Application Load Balancer sends the request to the target.
Constant Summary collapse
- APPEND =
Deprecated.Note:
Default:
Application Load Balancer adds the client IP address (of the last hop) to the X-Forwarded-For header in the HTTP request before it sends it to targets.
Jsii::Enum.new("aws-cdk-lib.aws_elasticloadbalancingv2.XffHeaderProcessingMode", "APPEND")
- PRESERVE =
Deprecated.Note:
Default:
Application Load Balancer preserves the X-Forwarded-For header in the HTTP request, and sends it to targets without any change.
Jsii::Enum.new("aws-cdk-lib.aws_elasticloadbalancingv2.XffHeaderProcessingMode", "PRESERVE")
- REMOVE =
Deprecated.Note:
Default:
Application Load Balancer removes the X-Forwarded-For header in the HTTP request before it sends it to targets.
Jsii::Enum.new("aws-cdk-lib.aws_elasticloadbalancingv2.XffHeaderProcessingMode", "REMOVE")