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

Dataset

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

Represents a dataset that can be processed by DataBrew.

interface Dataset {
AccountId?: string | null;
CreateDate?: Date | number | null;
CreatedBy?: string | null;
Format?: InputFormat | null;
FormatOptions?: FormatOptions | null;
Input: Input;
LastModifiedBy?: string | null;
LastModifiedDate?: Date | number | null;
Name: string;
PathOptions?: PathOptions | null;
ResourceArn?: string | null;
Source?: Source | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
AccountId?: string | null
[src]

The ID of the Amazon Web Services account that owns the dataset.

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

The date and time that the dataset was created.

§
CreatedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who created the dataset.

§
Format?: InputFormat | null
[src]

The file format of a dataset that is created from an Amazon S3 file or folder.

§
FormatOptions?: FormatOptions | null
[src]

A set of options that define how DataBrew interprets the data in the dataset.

§
Input: Input
[src]

Information on how DataBrew can find the dataset, in either the Glue Data Catalog or Amazon S3.

§
LastModifiedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who last modified the dataset.

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

The last modification date and time of the dataset.

§
Name: string
[src]

The unique name of the dataset.

§
PathOptions?: PathOptions | null
[src]

A set of options that defines how DataBrew interprets an Amazon S3 path of the dataset.

§
ResourceArn?: string | null
[src]

The unique Amazon Resource Name (ARN) for the dataset.

§
Source?: Source | null
[src]

The location of the data for the dataset, either Amazon S3 or the Glue Data Catalog.

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

Metadata tags that have been applied to the dataset.