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

NetworkResourceUtilization

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

The network field that contains a list of network metrics that are associated with the current instance.

interface NetworkResourceUtilization {
NetworkInBytesPerSecond?: string | null;
NetworkOutBytesPerSecond?: string | null;
NetworkPacketsInPerSecond?: string | null;
NetworkPacketsOutPerSecond?: string | null;
}

§Properties

§
NetworkInBytesPerSecond?: string | null
[src]

The network inbound throughput utilization measured in Bytes per second.

§
NetworkOutBytesPerSecond?: string | null
[src]

The network outbound throughput utilization measured in Bytes per second.

§
NetworkPacketsInPerSecond?: string | null
[src]

The network ingress packets that are measured in packets per second.

§
NetworkPacketsOutPerSecond?: string | null
[src]

The network outgress packets that are measured in packets per second.