Interface CfnTrafficRoutingConfig

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:54.962Z") @Stability(Stable) public interface CfnTrafficRoutingConfig extends software.amazon.jsii.JsiiSerializable
Traffic routing configuration settings.

The type of the

invalid @link
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.core.*;
 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();