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

ConnectivityInfo

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

Contains information about an endpoint and port where client devices can connect to an MQTT broker on a Greengrass core device.

interface ConnectivityInfo {
hostAddress?: string | null;
id?: string | null;
metadata?: string | null;
portNumber?: number | null;
}

§Properties

§
hostAddress?: string | null
[src]

The IP address or DNS address where client devices can connect to an MQTT broker on the Greengrass core device.

§
id?: string | null
[src]

An ID for the connectivity information.

§
metadata?: string | null
[src]

Additional metadata to provide to client devices that connect to this core device.

§
portNumber?: number | null
[src]

The port where the MQTT broker operates on the core device. This port is typically 8883, which is the default port for the MQTT broker component that runs on core devices.