Class: Aws::ElasticLoadBalancingV2::Types::HostHeaderRewriteConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::HostHeaderRewriteConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about a host header rewrite transform. This transform matches a pattern in the host header in an HTTP request and replaces it with the specified string.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rewrites ⇒ Array<Types::RewriteConfig>
The host header rewrite transform.
Instance Attribute Details
#rewrites ⇒ Array<Types::RewriteConfig>
The host header rewrite transform. Each transform consists of a regular expression to match and a replacement string.
2040 2041 2042 2043 2044 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2040 class HostHeaderRewriteConfig < Struct.new( :rewrites) SENSITIVE = [] include Aws::Structure end |