Class: Aws::ECS::Types::ServiceConnectTestTrafficHeaderMatchRules
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ServiceConnectTestTrafficHeaderMatchRules
- Defined in:
- gems/aws-sdk-ecs/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.
10371 10372 10373 10374 10375 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10371 class ServiceConnectTestTrafficHeaderMatchRules < Struct.new( :exact) SENSITIVE = [] include Aws::Structure end |