Interface CfnService.ServiceConnectTestTrafficRulesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnService.ServiceConnectTestTrafficRulesProperty.Jsii$Proxy
Enclosing class:
CfnService

@Stability(Stable) public static interface CfnService.ServiceConnectTestTrafficRulesProperty extends software.amazon.jsii.JsiiSerializable
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 .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecs.*;
 ServiceConnectTestTrafficRulesProperty serviceConnectTestTrafficRulesProperty = ServiceConnectTestTrafficRulesProperty.builder()
         .header(ServiceConnectTestTrafficRulesHeaderProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .value(ServiceConnectTestTrafficRulesHeaderValueProperty.builder()
                         .exact("exact")
                         .build())
                 .build())
         .build();
 

See Also: