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

FilesLimit

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

Represents a limit imposed on number of Amazon S3 files that should be selected for a dataset from a connected Amazon S3 path.

interface FilesLimit {
MaxFiles: number;
Order?: Order | null;
OrderedBy?: OrderedBy | null;
}

§Properties

§
MaxFiles: number
[src]

The number of Amazon S3 files to select.

§
Order?: Order | null
[src]

A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order, i.e. most recent files are selected first. Another possible value is ASCENDING.

§
OrderedBy?: OrderedBy | null
[src]

A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.