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

JobReport

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

Contains the configuration parameters for a job-completion report.

interface JobReport {
Bucket?: string | null;
Enabled: boolean;
Format?: JobReportFormat | null;
Prefix?: string | null;
ReportScope?: JobReportScope | null;
}

§Properties

§
Bucket?: string | null
[src]

The Amazon Resource Name (ARN) for the bucket where specified job-completion report will be stored.

§
Enabled: boolean
[src]

Indicates whether the specified job will generate a job-completion report.

§
Format?: JobReportFormat | null
[src]

The format of the specified job-completion report.

§
Prefix?: string | null
[src]

An optional prefix to describe where in the specified bucket the job-completion report will be stored. Amazon S3 stores the job-completion report at <prefix>/job-<job-id>/report.json.

§
ReportScope?: JobReportScope | null
[src]

Indicates whether the job-completion report will include details of all tasks or only failed tasks.