Interface IBaseTrafficShiftingConfigProps
Common properties of traffic shifting routing configurations.
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IBaseTrafficShiftingConfigProps
Syntax (vb)
Public Interface 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
Properties
| Interval | The amount of time between traffic shifts. |
| Percentage | The percentage to increase traffic on each traffic shift. |
Properties
Interval
The amount of time between traffic shifts.
Duration Interval { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Percentage
The percentage to increase traffic on each traffic shift.
double Percentage { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated