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.4/services/sms.ts?docs=full";

Represents a connector.

interface Connector {
associatedOn?: Date | number | null;
capabilityList?: ConnectorCapability[] | null;
connectorId?: string | null;
ipAddress?: string | null;
macAddress?: string | null;
status?: ConnectorStatus | null;
version?: string | null;
vmManagerId?: string | null;
vmManagerName?: string | null;
vmManagerType?: VmManagerType | null;
}

§Properties

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

The time the connector was associated.

§
capabilityList?: ConnectorCapability[] | null
[src]

The capabilities of the connector.

§
connectorId?: string | null
[src]

The ID of the connector.

§
ipAddress?: string | null
[src]

The IP address of the connector.

§
macAddress?: string | null
[src]

The MAC address of the connector.

§
status?: ConnectorStatus | null
[src]

The status of the connector.

§
version?: string | null
[src]

The connector version.

§
vmManagerId?: string | null
[src]

The ID of the VM manager.

§
vmManagerName?: string | null
[src]

The name of the VM manager.

§
vmManagerType?: VmManagerType | null
[src]

The VM management product.