interface CfnTrafficRoutingTimeBasedCanary
Language | Type name |
---|---|
.NET | Amazon.CDK.CfnTrafficRoutingTimeBasedCanary |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnTrafficRoutingTimeBasedCanary |
Java | software.amazon.awscdk.CfnTrafficRoutingTimeBasedCanary |
Python | aws_cdk.CfnTrafficRoutingTimeBasedCanary |
TypeScript (source) | aws-cdk-lib » CfnTrafficRoutingTimeBasedCanary |
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 * as cdk from 'aws-cdk-lib';
const cfnTrafficRoutingTimeBasedCanary: cdk.CfnTrafficRoutingTimeBasedCanary = {
bakeTimeMins: 123,
stepPercentage: 123,
};
Properties
Name | Type | Description |
---|---|---|
bake | number | The number of minutes between the first and second traffic shifts of a time-based canary deployment. |
step | number | The percentage of traffic to shift in the first increment of a time-based canary deployment. |
bakeTimeMins?
Type:
number
(optional, default: 5)
The number of minutes between the first and second traffic shifts of a time-based canary deployment.
stepPercentage?
Type:
number
(optional, default: 15)
The percentage of traffic to shift in the first increment of a time-based canary deployment.
The step percentage must be 14% or greater.