Table of Contents

Interface ICfnTrafficRoutingTimeBasedCanary

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

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

public interface ICfnTrafficRoutingTimeBasedCanary

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

Properties

BakeTimeMins

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

double? BakeTimeMins { get; }

Property Value

double?

Remarks

Default: 5

StepPercentage

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

double? StepPercentage { get; }

Property Value

double?

Remarks

The step percentage must be 14% or greater.

Default: 15