Show / Hide Table of Contents

Class CfnTrafficRoutingTimeBasedLinear

The traffic routing configuration if CfnTrafficRoutingConfig.type is CfnTrafficRoutingType.TIME_BASED_LINEAR.

Inheritance
object
CfnTrafficRoutingTimeBasedLinear
Implements
ICfnTrafficRoutingTimeBasedLinear
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTrafficRoutingTimeBasedLinear : ICfnTrafficRoutingTimeBasedLinear
Syntax (vb)
Public Class CfnTrafficRoutingTimeBasedLinear Implements ICfnTrafficRoutingTimeBasedLinear
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;

            var cfnTrafficRoutingTimeBasedLinear = new CfnTrafficRoutingTimeBasedLinear {
                BakeTimeMins = 123,
                StepPercentage = 123
            };

Synopsis

Constructors

CfnTrafficRoutingTimeBasedLinear()

The traffic routing configuration if CfnTrafficRoutingConfig.type is CfnTrafficRoutingType.TIME_BASED_LINEAR.

Properties

BakeTimeMins

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

StepPercentage

The percentage of traffic that is shifted at the start of each increment of a time-based linear deployment.

Constructors

CfnTrafficRoutingTimeBasedLinear()

The traffic routing configuration if CfnTrafficRoutingConfig.type is CfnTrafficRoutingType.TIME_BASED_LINEAR.

public CfnTrafficRoutingTimeBasedLinear()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;

            var cfnTrafficRoutingTimeBasedLinear = new CfnTrafficRoutingTimeBasedLinear {
                BakeTimeMins = 123,
                StepPercentage = 123
            };

Properties

BakeTimeMins

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

public double? BakeTimeMins { get; set; }
Property Value

double?

Remarks

Default: 5

StepPercentage

The percentage of traffic that is shifted at the start of each increment of a time-based linear deployment.

public double? StepPercentage { get; set; }
Property Value

double?

Remarks

The step percentage must be 14% or greater.

Default: 15

Implements

ICfnTrafficRoutingTimeBasedLinear
Back to top Generated by DocFX