Class BaseTrafficShiftingConfigProps
Common properties of traffic shifting routing configurations.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
Percentage
The percentage to increase traffic on each traffic shift.
public double Percentage { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated