Class: Aws::ECS::Types::ServiceConnectTestTrafficHeaderMatchRules
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ServiceConnectTestTrafficHeaderMatchRules
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
The header matching rules for test traffic routing in Amazon ECS blue/green deployments. These rules determine how incoming requests are matched based on HTTP headers to route test traffic to the new service revision.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exact ⇒ String
The exact value that the HTTP header must match for the test traffic routing rule to apply.
Instance Attribute Details
#exact ⇒ String
The exact value that the HTTP header must match for the test traffic routing rule to apply. This provides precise control over which requests are routed to the new service revision during blue/green deployments.
12703 12704 12705 12706 12707 |
# File 'lib/aws-sdk-ecs/types.rb', line 12703 class ServiceConnectTestTrafficHeaderMatchRules < Struct.new( :exact) SENSITIVE = [] include Aws::Structure end |