interface GrpcRouteProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.CfnRoute.GrpcRouteProperty |
![]() | software.amazon.awscdk.services.appmesh.CfnRoute.GrpcRouteProperty |
![]() | aws_cdk.aws_appmesh.CfnRoute.GrpcRouteProperty |
![]() | @aws-cdk/aws-appmesh » CfnRoute » GrpcRouteProperty |
An object that represents a gRPC route type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
const grpcRouteProperty: appmesh.CfnRoute.GrpcRouteProperty = {
action: {
weightedTargets: [{
virtualNode: 'virtualNode',
weight: 123,
// the properties below are optional
port: 123,
}],
},
match: {
metadata: [{
name: 'name',
// the properties below are optional
invert: false,
match: {
exact: 'exact',
prefix: 'prefix',
range: {
end: 123,
start: 123,
},
regex: 'regex',
suffix: 'suffix',
},
}],
methodName: 'methodName',
port: 123,
serviceName: 'serviceName',
},
// the properties below are optional
retryPolicy: {
maxRetries: 123,
perRetryTimeout: {
unit: 'unit',
value: 123,
},
// the properties below are optional
grpcRetryEvents: ['grpcRetryEvents'],
httpRetryEvents: ['httpRetryEvents'],
tcpRetryEvents: ['tcpRetryEvents'],
},
timeout: {
idle: {
unit: 'unit',
value: 123,
},
perRequest: {
unit: 'unit',
value: 123,
},
},
};
Properties
Name | Type | Description |
---|---|---|
action | IResolvable | Grpc | An object that represents the action to take if a match is determined. |
match | IResolvable | Grpc | An object that represents the criteria for determining a request match. |
retry | IResolvable | Grpc | An object that represents a retry policy. |
timeout? | IResolvable | Grpc | An object that represents types of timeouts. |
action
Type:
IResolvable
|
Grpc
An object that represents the action to take if a match is determined.
match
Type:
IResolvable
|
Grpc
An object that represents the criteria for determining a request match.
retryPolicy?
Type:
IResolvable
|
Grpc
(optional)
An object that represents a retry policy.
timeout?
Type:
IResolvable
|
Grpc
(optional)
An object that represents types of timeouts.