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

CreateJobRequest

import type { CreateJobRequest } from "https://aws-api.deno.dev/v0.4/services/s3control.ts?docs=full";
interface CreateJobRequest {
AccountId: string;
ClientRequestToken: string;
ConfirmationRequired?: boolean | null;
Description?: string | null;
Manifest?: JobManifest | null;
ManifestGenerator?: JobManifestGenerator | null;
Operation: JobOperation;
Priority: number;
Report: JobReport;
RoleArn: string;
Tags?: S3Tag[] | null;
}

§Properties

§
AccountId: string
[src]

The Amazon Web Services account ID that creates the job.

§
ClientRequestToken: string
[src]

An idempotency token to ensure that you don't accidentally submit the same request twice. You can use any string up to the maximum length.

§
ConfirmationRequired?: boolean | null
[src]

Indicates whether confirmation is required before Amazon S3 runs the job. Confirmation is only required for jobs created through the Amazon S3 console.

§
Description?: string | null
[src]

A description for this job. You can use any string within the permitted length. Descriptions don't need to be unique and can be used for multiple jobs.

§
Manifest?: JobManifest | null
[src]

Configuration parameters for the manifest.

§
ManifestGenerator?: JobManifestGenerator | null
[src]

The attribute container for the ManifestGenerator details. Jobs must be created with either a manifest file or a ManifestGenerator, but not both.

§

The action that you want this job to perform on every object listed in the manifest. For more information about the available actions, see Operations in the Amazon S3 User Guide.

§
Priority: number
[src]

The numerical priority for this job. Higher numbers indicate higher priority.

§

Configuration parameters for the optional job-completion report.

§
RoleArn: string
[src]

The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role that Batch Operations will use to run this job's action on every object in the manifest.

§
Tags?: S3Tag[] | null
[src]

A set of tags to associate with the S3 Batch Operations job. This is an optional parameter.