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

Capacity

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

The physical capacity of the Amazon Web Services Snow Family device.

interface Capacity {
available?: number | null;
name?: string | null;
total?: number | null;
unit?: string | null;
used?: number | null;
}

§Properties

§
available?: number | null
[src]

The amount of capacity available for use on the device.

§
name?: string | null
[src]

The name of the type of capacity, such as memory.

§
total?: number | null
[src]

The total capacity on the device.

§
unit?: string | null
[src]

The unit of measure for the type of capacity.

§
used?: number | null
[src]

The amount of capacity used on the device.