Class: Aws::ElasticLoadBalancingV2::Types::UrlRewriteConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::UrlRewriteConfig
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/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.
4903 4904 4905 4906 4907 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 4903 class UrlRewriteConfig < Struct.new( :rewrites) SENSITIVE = [] include Aws::Structure end |