Interface CfnServicePropsMixin.ServiceConnectTestTrafficRulesProperty

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

@Stability(Stable) public static interface CfnServicePropsMixin.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.cfnpropertymixins.services.ecs.*;
 ServiceConnectTestTrafficRulesProperty serviceConnectTestTrafficRulesProperty = ServiceConnectTestTrafficRulesProperty.builder()
         .header(ServiceConnectTestTrafficRulesHeaderProperty.builder()
                 .name("name")
                 .value(ServiceConnectTestTrafficRulesHeaderValueProperty.builder()
                         .exact("exact")
                         .build())
                 .build())
         .build();
 

See Also: