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

Order

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

Specifies the sort order of a sorted column.

interface Order {
Column: string;
SortOrder: number;
}

§Properties

§
Column: string
[src]

The name of the column.

§
SortOrder: number
[src]

Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).