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

RetryCriteria

import type { RetryCriteria } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";

The criteria that determines how many retries are allowed for each failure type for a job.

interface RetryCriteria {
failureType: RetryableFailureType;
numberOfRetries: number;
}

§Properties

§

The type of job execution failures that can initiate a job retry.

§
numberOfRetries: number
[src]

The number of retries allowed for a failure type for the job.