interface GatewayRouteRangeMatchProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnGatewayRoutePropsMixin.GatewayRouteRangeMatchProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnGatewayRoutePropsMixin_GatewayRouteRangeMatchProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnGatewayRoutePropsMixin.GatewayRouteRangeMatchProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnGatewayRoutePropsMixin.GatewayRouteRangeMatchProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnGatewayRoutePropsMixin » GatewayRouteRangeMatchProperty |
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 { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const gatewayRouteRangeMatchProperty: appmesh_mixins.CfnGatewayRoutePropsMixin.GatewayRouteRangeMatchProperty = {
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
(optional)
The end of the range.
start?
Type:
number
(optional)
The start of the range.

.NET
Go
Java
Python
TypeScript