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

DiskResourceUtilization

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

The field that contains a list of disk (local storage) metrics that are associated with the current instance.

interface DiskResourceUtilization {
DiskReadBytesPerSecond?: string | null;
DiskReadOpsPerSecond?: string | null;
DiskWriteBytesPerSecond?: string | null;
DiskWriteOpsPerSecond?: string | null;
}

§Properties

§
DiskReadBytesPerSecond?: string | null
[src]

The maximum read throughput operations per second.

§
DiskReadOpsPerSecond?: string | null
[src]

The maximum number of read operations per second.

§
DiskWriteBytesPerSecond?: string | null
[src]

The maximum write throughput operations per second.

§
DiskWriteOpsPerSecond?: string | null
[src]

The maximum number of write operations per second.