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

InstanceCapacity

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

Information about the number of instances that can be launched onto the Dedicated Host.

interface InstanceCapacity {
AvailableCapacity?: number | null;
InstanceType?: string | null;
TotalCapacity?: number | null;
}

§Properties

§
AvailableCapacity?: number | null
[src]

The number of instances that can be launched onto the Dedicated Host based on the host's available capacity.

§
InstanceType?: string | null
[src]

The instance type supported by the Dedicated Host.

§
TotalCapacity?: number | null
[src]

The total number of instances that can be launched onto the Dedicated Host if there are no instances running on it.