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

ComputeCapacityStatus

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

Describes the capacity status for a fleet.

interface ComputeCapacityStatus {
Available?: number | null;
Desired: number;
InUse?: number | null;
Running?: number | null;
}

§Properties

§
Available?: number | null
[src]

The number of currently available instances that can be used to stream sessions.

§
Desired: number
[src]

The desired number of streaming instances.

§
InUse?: number | null
[src]

The number of instances in use for streaming.

§
Running?: number | null
[src]

The total number of simultaneous streaming instances that are running.