Class: Aws::ElasticLoadBalancingV2::Types::HostHeaderRewriteConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::HostHeaderRewriteConfig
 
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/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.
| 2021 2022 2023 2024 2025 | # File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2021 class HostHeaderRewriteConfig < Struct.new( :rewrites) SENSITIVE = [] include Aws::Structure end |