Show / Hide Table of Contents

Class BaseTrafficShiftingConfigProps

Common properties of traffic shifting routing configurations.

Inheritance
object
BaseTrafficShiftingConfigProps
Implements
IBaseTrafficShiftingConfigProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class BaseTrafficShiftingConfigProps : IBaseTrafficShiftingConfigProps
Syntax (vb)
Public Class BaseTrafficShiftingConfigProps Implements IBaseTrafficShiftingConfigProps
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;
            using Amazon.CDK.AWS.CodeDeploy;

            var baseTrafficShiftingConfigProps = new BaseTrafficShiftingConfigProps {
                Interval = Duration.Minutes(30),
                Percentage = 123
            };

Synopsis

Constructors

BaseTrafficShiftingConfigProps()

Common properties of traffic shifting routing configurations.

Properties

Interval

The amount of time between traffic shifts.

Percentage

The percentage to increase traffic on each traffic shift.

Constructors

BaseTrafficShiftingConfigProps()

Common properties of traffic shifting routing configurations.

public BaseTrafficShiftingConfigProps()
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;
            using Amazon.CDK.AWS.CodeDeploy;

            var baseTrafficShiftingConfigProps = new BaseTrafficShiftingConfigProps {
                Interval = Duration.Minutes(30),
                Percentage = 123
            };

Properties

Interval

The amount of time between traffic shifts.

public Duration Interval { get; set; }
Property Value

Duration

Remarks

ExampleMetadata: fixture=_generated

Percentage

The percentage to increase traffic on each traffic shift.

public double Percentage { get; set; }
Property Value

double

Remarks

ExampleMetadata: fixture=_generated

Implements

IBaseTrafficShiftingConfigProps
Back to top Generated by DocFX