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

Node

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

Represents an individual node within a DAX cluster.

interface Node {
AvailabilityZone?: string | null;
Endpoint?: Endpoint | null;
NodeCreateTime?: Date | number | null;
NodeId?: string | null;
NodeStatus?: string | null;
ParameterGroupStatus?: string | null;
}

§Properties

§
AvailabilityZone?: string | null
[src]

The Availability Zone (AZ) in which the node has been deployed.

§
Endpoint?: Endpoint | null
[src]

The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.

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

The date and time (in UNIX epoch format) when the node was launched.

§
NodeId?: string | null
[src]

A system-generated identifier for the node.

§
NodeStatus?: string | null
[src]

The current status of the node. For example: available.

§
ParameterGroupStatus?: string | null
[src]

The status of the parameter group associated with this node. For example, in-sync.