Table of Contents

Class CfnTrafficRoutingTimeBasedCanary

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

The traffic routing configuration if {@link CfnTrafficRoutingConfig.type} is {@link CfnTrafficRoutingType.TIME_BASED_CANARY}.

public class CfnTrafficRoutingTimeBasedCanary : ICfnTrafficRoutingTimeBasedCanary
Inheritance
CfnTrafficRoutingTimeBasedCanary
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;
            var cfnTrafficRoutingTimeBasedCanary = new CfnTrafficRoutingTimeBasedCanary {
                BakeTimeMins = 123,
                StepPercentage = 123
            };

Remarks

ExampleMetadata: fixture=_generated

Constructors

CfnTrafficRoutingTimeBasedCanary()

public CfnTrafficRoutingTimeBasedCanary()

Properties

BakeTimeMins

The number of minutes between the first and second traffic shifts of a time-based canary deployment.

public double? BakeTimeMins { get; set; }

Property Value

double?

Remarks

Default: 5

StepPercentage

The percentage of traffic to shift in the first increment of a time-based canary deployment.

public double? StepPercentage { get; set; }

Property Value

double?

Remarks

The step percentage must be 14% or greater.

Default: 15