interface GrpcRouteMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnRoutePropsMixin.GrpcRouteMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnRoutePropsMixin_GrpcRouteMetadataProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnRoutePropsMixin.GrpcRouteMetadataProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnRoutePropsMixin.GrpcRouteMetadataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnRoutePropsMixin » GrpcRouteMetadataProperty |
An object that represents the match metadata for the route.
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 grpcRouteMetadataProperty: appmesh_mixins.CfnRoutePropsMixin.GrpcRouteMetadataProperty = {
invert: false,
match: {
exact: 'exact',
prefix: 'prefix',
range: {
end: 123,
start: 123,
},
regex: 'regex',
suffix: 'suffix',
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| invert? | boolean | IResolvable | Specify True to match anything except the match criteria. |
| match? | IResolvable | Grpc | An object that represents the data to match from the request. |
| name? | string | The name of the route. |
invert?
Type:
boolean | IResolvable
(optional)
Specify True to match anything except the match criteria.
The default value is False .
match?
Type:
IResolvable | Grpc
(optional)
An object that represents the data to match from the request.
name?
Type:
string
(optional)
The name of the route.

.NET
Go
Java
Python
TypeScript