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

NetworkBandwidthGbpsRequest

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

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

Note: Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide for Linux Instances.

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

§Properties

§
Max?: number | null
[src]

The maximum amount of network bandwidth, in gigabits per second (Gbps).

§
Min?: number | null
[src]

The minimum amount of network bandwidth, in gigabits per second (Gbps).