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

MongoDBTarget

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

Specifies an Amazon DocumentDB or MongoDB data store to crawl.

interface MongoDBTarget {
ConnectionName?: string | null;
Path?: string | null;
ScanAll?: boolean | null;
}

§Properties

§
ConnectionName?: string | null
[src]

The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.

§
Path?: string | null
[src]

The path of the Amazon DocumentDB or MongoDB target (database/collection).

§
ScanAll?: boolean | null
[src]

Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.