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

MemoryMiBRequest

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

Specifies the minimum and maximum for the MemoryMiB object when you specify "InstanceRequirements" for an Auto Scaling group.

interface MemoryMiBRequest {
Max?: number | null;
Min: number;
}

§Properties

§
Max?: number | null
[src]

The memory maximum in MiB.

§
Min: number
[src]

The memory minimum in MiB.