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

PathOptions

import type { PathOptions } from "https://aws-api.deno.dev/v0.3/services/databrew.ts?docs=full";

Represents a set of options that define how DataBrew selects files for a given Amazon S3 path in a dataset.

interface PathOptions {
FilesLimit?: FilesLimit | null;
LastModifiedDateCondition?: FilterExpression | null;
Parameters?: {
[key: string]: DatasetParameter | null | undefined;
}
| null;
}

§Properties

§
FilesLimit?: FilesLimit | null
[src]

If provided, this structure imposes a limit on a number of files that should be selected.

§
LastModifiedDateCondition?: FilterExpression | null
[src]

If provided, this structure defines a date range for matching Amazon S3 objects based on their LastModifiedDate attribute in Amazon S3.

§
Parameters?: {
[key: string]: DatasetParameter | null | undefined;
}
| null
[src]

A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.