Interface CfnTrafficRoutingConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTrafficRoutingConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:01.544Z") @Stability(Stable) public interface CfnTrafficRoutingConfig extends software.amazon.jsii.JsiiSerializable
Traffic routing configuration settings.

The type of the CfnCodeDeployBlueGreenHookProps.trafficRoutingConfig property.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 CfnTrafficRoutingConfig cfnTrafficRoutingConfig = CfnTrafficRoutingConfig.builder()
         .type(CfnTrafficRoutingType.ALL_AT_ONCE)
         // the properties below are optional
         .timeBasedCanary(CfnTrafficRoutingTimeBasedCanary.builder()
                 .bakeTimeMins(123)
                 .stepPercentage(123)
                 .build())
         .timeBasedLinear(CfnTrafficRoutingTimeBasedLinear.builder()
                 .bakeTimeMins(123)
                 .stepPercentage(123)
                 .build())
         .build();