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

JobManifestGeneratorFilter

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

The filter used to describe a set of objects for the job's manifest.

interface JobManifestGeneratorFilter {
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
EligibleForReplication?: boolean | null;
ObjectReplicationStatuses?: ReplicationStatus[] | null;
}

§Properties

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

If provided, the generated manifest should include only source bucket objects that were created after this time.

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

If provided, the generated manifest should include only source bucket objects that were created before this time.

§
EligibleForReplication?: boolean | null
[src]

Include objects in the generated manifest only if they are eligible for replication according to the Replication configuration on the source bucket.

§
ObjectReplicationStatuses?: ReplicationStatus[] | null
[src]

If provided, the generated manifest should include only source bucket objects that have one of the specified Replication statuses.