Class CfnRoutePropsMixin.MatchRangeProperty
An object that represents the range of values to match on.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppMesh
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRoutePropsMixin.MatchRangeProperty : CfnRoutePropsMixin.IMatchRangeProperty
Syntax (vb)
Public Class CfnRoutePropsMixin.MatchRangeProperty Implements CfnRoutePropsMixin.IMatchRangeProperty
Remarks
The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.
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.CfnPropertyMixins.AWS.AppMesh;
var matchRangeProperty = new MatchRangeProperty {
End = 123,
Start = 123
};
Synopsis
Constructors
| MatchRangeProperty() | An object that represents the range of values to match on. |
Properties
| End | The end of the range. |
| Start | The start of the range. |
Constructors
MatchRangeProperty()
An object that represents the range of values to match on.
public MatchRangeProperty()
Remarks
The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.
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.CfnPropertyMixins.AWS.AppMesh;
var matchRangeProperty = new MatchRangeProperty {
End = 123,
Start = 123
};
Properties
End
The end of the range.
public double? End { get; set; }
Property Value
Remarks
Start
The start of the range.
public double? Start { get; set; }