interface MatchRangeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.CfnRoute.MatchRangeProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnRoute_MatchRangeProperty |
![]() | software.amazon.awscdk.services.appmesh.CfnRoute.MatchRangeProperty |
![]() | aws_cdk.aws_appmesh.CfnRoute.MatchRangeProperty |
![]() | aws-cdk-lib » aws_appmesh » CfnRoute » MatchRangeProperty |
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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
const matchRangeProperty: appmesh.CfnRoute.MatchRangeProperty = {
end: 123,
start: 123,
};
Properties
Name | Type | Description |
---|---|---|
end | number | The end of the range. |
start | number | The start of the range. |
end
Type:
number
The end of the range.
start
Type:
number
The start of the range.