aws-cdk-lib.CfnTrafficRoutingTimeBasedCanary

interface CfnTrafficRoutingTimeBasedCanary

LanguageType name
.NETAmazon.CDK.CfnTrafficRoutingTimeBasedCanary
Gogithub.com/aws/aws-cdk-go/awscdk/v2#CfnTrafficRoutingTimeBasedCanary
Javasoftware.amazon.awscdk.CfnTrafficRoutingTimeBasedCanary
Pythonaws_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

NameTypeDescription
bakeTimeMins?numberThe number of minutes between the first and second traffic shifts of a time-based canary deployment.
stepPercentage?numberThe 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.