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

S3JobManifestGenerator

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

The container for the service that will create the S3 manifest.

interface S3JobManifestGenerator {
EnableManifestOutput: boolean;
ExpectedBucketOwner?: string | null;
ManifestOutputLocation?: S3ManifestOutputLocation | null;
SourceBucket: string;
}

§Properties

§
EnableManifestOutput: boolean
[src]

Determines whether or not to write the job's generated manifest to a bucket.

§
ExpectedBucketOwner?: string | null
[src]

The Amazon Web Services account ID that owns the bucket the generated manifest is written to. If provided the generated manifest bucket's owner Amazon Web Services account ID must match this value, else the job fails.

§

Specifies rules the S3JobManifestGenerator should use to use to decide whether an object in the source bucket should or should not be included in the generated job manifest.

§
ManifestOutputLocation?: S3ManifestOutputLocation | null
[src]

Specifies the location the generated manifest will be written to.

§
SourceBucket: string
[src]

The source bucket used by the ManifestGenerator.