aws-cdk-lib.aws_appmesh.HttpRetryPolicy

interface HttpRetryPolicy

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.HttpRetryPolicy
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#HttpRetryPolicy
Javasoftware.amazon.awscdk.services.appmesh.HttpRetryPolicy
Pythonaws_cdk.aws_appmesh.HttpRetryPolicy
TypeScript (source)aws-cdk-lib » aws_appmesh » HttpRetryPolicy

HTTP retry policy.

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: Duration.seconds(1),
    },
  }),
});

Properties

NameTypeDescription
retryAttemptsnumberThe maximum number of retry attempts.
retryTimeoutDurationThe timeout for each retry attempt.
httpRetryEvents?HttpRetryEvent[]Specify HTTP events on which to retry.
tcpRetryEvents?TcpRetryEvent[]TCP events on which to retry.

retryAttempts

Type: number

The maximum number of retry attempts.


retryTimeout

Type: Duration

The timeout for each retry attempt.


httpRetryEvents?

Type: HttpRetryEvent[] (optional, default: no retries for http events)

Specify HTTP events on which to retry.

You must specify at least one value for at least one types of retry events.


tcpRetryEvents?

Type: TcpRetryEvent[] (optional, default: no retries for tcp events)

TCP events on which to retry.

The event occurs before any processing of a request has started and is encountered when the upstream is temporarily or permanently unavailable. You must specify at least one value for at least one types of retry events.