Class: Aws::ECS::Types::ServiceConnectTestTrafficRules
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ServiceConnectTestTrafficRules
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The test traffic routing configuration for Amazon ECS blue/green deployments. This configuration allows you to define rules for routing specific traffic to the new service revision during the deployment process, allowing for safe testing before full production traffic shift.
For more information, see Service Connect for Amazon ECS blue/green deployments in the Amazon Elastic Container Service Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#header ⇒ Types::ServiceConnectTestTrafficHeaderRules
The HTTP header-based routing rules that determine which requests should be routed to the new service version during blue/green deployment testing.
Instance Attribute Details
#header ⇒ Types::ServiceConnectTestTrafficHeaderRules
The HTTP header-based routing rules that determine which requests should be routed to the new service version during blue/green deployment testing. These rules provide fine-grained control over test traffic routing based on request headers.
10432 10433 10434 10435 10436 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10432 class ServiceConnectTestTrafficRules < Struct.new( :header) SENSITIVE = [] include Aws::Structure end |