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

BatchRetryStrategy

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

The retry strategy that's associated with a job. For more information, see Automated job retries in the Batch User Guide.

interface BatchRetryStrategy {
Attempts?: number | null;
}

§Properties

§
Attempts?: number | null
[src]

The number of times to move a job to the RUNNABLE status. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.