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

IOUsage

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

Contains I/O usage metrics for a command that was invoked.

interface IOUsage {
ReadIOs?: number | null;
WriteIOs?: number | null;
}

§Properties

§
ReadIOs?: number | null
[src]

The number of read I/O requests that the command made.

§
WriteIOs?: number | null
[src]

The number of write I/O requests that the command made.