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

BatchParameters

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

The custom parameters to be used when the target is an Batch job.

interface BatchParameters {
ArrayProperties?: BatchArrayProperties | null;
JobDefinition: string;
JobName: string;
RetryStrategy?: BatchRetryStrategy | null;
}

§Properties

§
ArrayProperties?: BatchArrayProperties | null
[src]

The array properties for the submitted job, such as the size of the array. The array size can be between 2 and 10,000. If you specify array properties for a job, it becomes an array job. This parameter is used only if the target is an Batch job.

§
JobDefinition: string
[src]

The ARN or name of the job definition to use if the event target is an Batch job. This job definition must already exist.

§
JobName: string
[src]

The name to use for this execution of the job, if the target is an Batch job.

§
RetryStrategy?: BatchRetryStrategy | null
[src]

The retry strategy to use for failed jobs, if the target is an Batch job. The retry strategy is the number of times to retry the failed job execution. Valid values are 1–10. When you specify a retry strategy here, it overrides the retry strategy defined in the job definition.