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

JobDescriptor

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

A container element for the job configuration and status information returned by a Describe Job request.

interface JobDescriptor {
ConfirmationRequired?: boolean | null;
CreationTime?: Date | number | null;
Description?: string | null;
FailureReasons: JobFailure[];
GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor | null;
JobArn?: string | null;
JobId?: string | null;
Manifest?: JobManifest | null;
ManifestGenerator?: JobManifestGenerator | null;
Operation?: JobOperation | null;
Priority?: number | null;
ProgressSummary?: JobProgressSummary | null;
Report?: JobReport | null;
RoleArn?: string | null;
Status?: JobStatus | null;
StatusUpdateReason?: string | null;
SuspendedCause?: string | null;
SuspendedDate?: Date | number | null;
TerminationDate?: Date | number | null;
}

§Properties

§
ConfirmationRequired?: boolean | null
[src]

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

§
CreationTime?: Date | number | null
[src]

A timestamp indicating when this job was created.

§
Description?: string | null
[src]

The description for this job, if one was provided in this job's Create Job request.

§
FailureReasons: JobFailure[]
[src]

If the specified job failed, this field contains information describing the failure.

§
GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor | null
[src]

The attribute of the JobDescriptor containing details about the job's generated manifest.

§
JobArn?: string | null
[src]

The Amazon Resource Name (ARN) for this job.

§
JobId?: string | null
[src]

The ID for the specified job.

§
Manifest?: JobManifest | null
[src]

The configuration information for the specified job's manifest object.

§
ManifestGenerator?: JobManifestGenerator | null
[src]

The manifest generator that was used to generate a job manifest for this job.

§
Operation?: JobOperation | null
[src]

The operation that the specified job is configured to run on the objects listed in the manifest.

§
Priority?: number | null
[src]

The priority of the specified job.

§
ProgressSummary?: JobProgressSummary | null
[src]

Describes the total number of tasks that the specified job has run, the number of tasks that succeeded, and the number of tasks that failed.

§
Report?: JobReport | null
[src]

Contains the configuration information for the job-completion report if you requested one in the Create Job request.

§
RoleArn?: string | null
[src]

The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role assigned to run the tasks for this job.

§
Status?: JobStatus | null
[src]

The current status of the specified job.

§
StatusUpdateReason?: string | null
[src]

The reason for updating the job.

§
SuspendedCause?: string | null
[src]

The reason why the specified job was suspended. A job is only suspended if you create it through the Amazon S3 console. When you create the job, it enters the Suspended state to await confirmation before running. After you confirm the job, it automatically exits the Suspended state.

§
SuspendedDate?: Date | number | null
[src]

The timestamp when this job was suspended, if it has been suspended.

§
TerminationDate?: Date | number | null
[src]

A timestamp indicating when this job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled.