Class: Aws::ElasticLoadBalancingV2::Types::UrlRewriteConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::UrlRewriteConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about a URL rewrite transform. This transform matches a pattern in the request URL and replaces it with the specified string.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rewrites ⇒ Array<Types::RewriteConfig>
The URL rewrite transform to apply to the request.
Instance Attribute Details
#rewrites ⇒ Array<Types::RewriteConfig>
The URL rewrite transform to apply to the request. The transform consists of a regular expression to match and a replacement string.
5011 5012 5013 5014 5015 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 5011 class UrlRewriteConfig < Struct.new( :rewrites) SENSITIVE = [] include Aws::Structure end |