Interface CfnGatewayRoute.IGatewayRouteRangeMatchProperty
An object that represents the range of values to match on.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IGatewayRouteRangeMatchProperty
Syntax (vb)
Public Interface IGatewayRouteRangeMatchProperty
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.AWS.AppMesh;
var gatewayRouteRangeMatchProperty = new GatewayRouteRangeMatchProperty {
End = 123,
Start = 123
};
Synopsis
Properties
End | The end of the range. |
Start | The start of the range. |
Properties
End
The end of the range.
double End { get; }
Property Value
System.Double
Remarks
Start
The start of the range.
double Start { get; }
Property Value
System.Double