Package software.amazon.awscdk
Interface CfnTrafficRoutingTimeBasedLinear
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrafficRoutingTimeBasedLinear.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:12.906Z")
@Stability(Stable)
public interface CfnTrafficRoutingTimeBasedLinear
extends software.amazon.jsii.JsiiSerializable
The traffic routing configuration if
CfnTrafficRoutingConfig.type
is CfnTrafficRoutingType.TIME_BASED_LINEAR
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; CfnTrafficRoutingTimeBasedLinear cfnTrafficRoutingTimeBasedLinear = CfnTrafficRoutingTimeBasedLinear.builder() .bakeTimeMins(123) .stepPercentage(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTrafficRoutingTimeBasedLinear
static final class
An implementation forCfnTrafficRoutingTimeBasedLinear
-
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 linear deployment.Default: 5
-
getStepPercentage
The percentage of traffic that is shifted at the start of each increment of a time-based linear deployment.The step percentage must be 14% or greater.
Default: 15
-
builder
-