interface RouteBaseProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppMesh.RouteBaseProps |
Java | software.amazon.awscdk.services.appmesh.RouteBaseProps |
Python | aws_cdk.aws_appmesh.RouteBaseProps |
TypeScript (source) | @aws-cdk/aws-appmesh » RouteBaseProps |
Base interface properties for all Routes.
Example
declare const router: appmesh.VirtualRouter;
declare const node: appmesh.VirtualNode;
router.addRoute('route-http2-retry', {
routeSpec: appmesh.RouteSpec.http2({
weightedTargets: [{ virtualNode: node }],
retryPolicy: {
// Retry if the connection failed
tcpRetryEvents: [appmesh.TcpRetryEvent.CONNECTION_ERROR],
// Retry if HTTP responds with a gateway error (502, 503, 504)
httpRetryEvents: [appmesh.HttpRetryEvent.GATEWAY_ERROR],
// Retry five times
retryAttempts: 5,
// Use a 1 second timeout per retry
retryTimeout: cdk.Duration.seconds(1),
},
}),
});
Properties
Name | Type | Description |
---|---|---|
route | Route | Protocol specific spec. |
route | string | The name of the route. |
routeSpec
Type:
Route
Protocol specific spec.
routeName?
Type:
string
(optional, default: An automatically generated name)
The name of the route.