aws-cdk-lib.aws_appmesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty

interface GatewayRouteRangeMatchProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnGatewayRoute_GatewayRouteRangeMatchProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty
Pythonaws_cdk.aws_appmesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty
TypeScript aws-cdk-lib » aws_appmesh » CfnGatewayRoute » 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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
const gatewayRouteRangeMatchProperty: appmesh.CfnGatewayRoute.GatewayRouteRangeMatchProperty = {
  end: 123,
  start: 123,
};

Properties

NameTypeDescription
endnumberThe end of the range.
startnumberThe start of the range.

end

Type: number

The end of the range.


start

Type: number

The start of the range.