public static interface CfnRoute.MatchRangeProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnRoute.MatchRangeProperty.Builder
A builder for
CfnRoute.MatchRangeProperty |
static class |
CfnRoute.MatchRangeProperty.Jsii$Proxy
An implementation for
CfnRoute.MatchRangeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnRoute.MatchRangeProperty.Builder |
builder() |
java.lang.Number |
getEnd()
The end of the range.
|
java.lang.Number |
getStart()
The start of the range.
|
java.lang.Number getEnd()
java.lang.Number getStart()
static CfnRoute.MatchRangeProperty.Builder builder()