Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RetryPolicy

import type { RetryPolicy } from "https://aws-api.deno.dev/v0.4/services/scheduler.ts?docs=full";

A RetryPolicy object that includes information about the retry policy settings, including the maximum age of an event, and the maximum number of times EventBridge Scheduler will try to deliver the event to a target.

interface RetryPolicy {
MaximumEventAgeInSeconds?: number | null;
MaximumRetryAttempts?: number | null;
}

§Properties

§
MaximumEventAgeInSeconds?: number | null
[src]

The maximum amount of time, in seconds, to continue to make retry attempts.

§
MaximumRetryAttempts?: number | null
[src]

The maximum number of retry attempts to make before the request fails. Retry attempts with exponential backoff continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is reached.