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

AcceleratorCountRequest

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

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance. To exclude accelerator-enabled instance types, set Max to 0.

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

§Properties

§
Max?: number | null
[src]

The maximum number of accelerators. To specify no maximum limit, omit this parameter. To exclude accelerator-enabled instance types, set Max to 0.

§
Min?: number | null
[src]

The minimum number of accelerators. To specify no minimum limit, omit this parameter.