Interface CfnRoute.MatchRangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoute.MatchRangeProperty.Jsii$Proxy
- Enclosing class:
CfnRoute
@Stability(Stable)
public static interface CfnRoute.MatchRangeProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the range of values to match on.
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appmesh.*; MatchRangeProperty matchRangeProperty = MatchRangeProperty.builder() .end(123) .start(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRoute.MatchRangeProperty
static final class
An implementation forCfnRoute.MatchRangeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnd
The end of the range. -
getStart
The start of the range. -
builder
-