Package software.amazon.awscdk.core
Interface CfnTrafficRoutingTimeBasedCanary
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrafficRoutingTimeBasedCanary.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:54.964Z")
@Stability(Stable)
public interface CfnTrafficRoutingTimeBasedCanary
extends software.amazon.jsii.JsiiSerializable
The traffic routing configuration if
CfnTrafficRoutingConfig.type
is CfnTrafficRoutingType.TIME_BASED_CANARY
.
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.*; CfnTrafficRoutingTimeBasedCanary cfnTrafficRoutingTimeBasedCanary = CfnTrafficRoutingTimeBasedCanary.builder() .bakeTimeMins(123) .stepPercentage(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTrafficRoutingTimeBasedCanary
static final class
An implementation forCfnTrafficRoutingTimeBasedCanary
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBakeTimeMins
The number of minutes between the first and second traffic shifts of a time-based canary deployment.Default: 5
-
getStepPercentage
The percentage of traffic to shift in the first increment of a time-based canary deployment.The step percentage must be 14% or greater.
Default: 15
-
builder
-