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

Connector

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

Information about a connector. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.

interface Connector {
ConnectorArn: string;
Id: string;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
ConnectorArn: string
[src]

The ARN of the connector.

§
Id: string
[src]

A descriptive or arbitrary ID for the connector. This value must be unique within the connector definition version. Max length is 128 characters with pattern [a-zA-Z0-9:_-]+.

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

The parameters or configuration that the connector uses.