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

SparkConnectorTarget

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

Specifies a target that uses an Apache Spark connector.

interface SparkConnectorTarget {
AdditionalOptions?: {
[key: string]: string | null | undefined;
}
| null;
ConnectionName: string;
ConnectionType: string;
ConnectorName: string;
Inputs: string[];
Name: string;
OutputSchemas?: GlueSchema[] | null;
}

§Properties

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

Additional connection options for the connector.

§
ConnectionName: string
[src]

The name of a connection for an Apache Spark connector.

§
ConnectionType: string
[src]

The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache Spark data store.

§
ConnectorName: string
[src]

The name of an Apache Spark connector.

§
Inputs: string[]
[src]

The nodes that are inputs to the data target.

§
Name: string
[src]

The name of the data target.

§
OutputSchemas?: GlueSchema[] | null
[src]

Specifies the data schema for the custom spark target.