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

Network

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

Information about a network.

interface Network {
createdAt?: Date | number | null;
description?: string | null;
networkArn: string;
networkName: string;
status: NetworkStatus;
statusReason?: string | null;
}

§Properties

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

The creation time of the network.

§
description?: string | null
[src]

The description of the network.

§
networkArn: string
[src]

The Amazon Resource Name (ARN) of the network.

§
networkName: string
[src]

The name of the network.

§

The status of the network.

§
statusReason?: string | null
[src]

The status reason of the network.