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

ContainerServicePower

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

Describes the powers that can be specified for an Amazon Lightsail container service.

The power specifies the amount of RAM, the number of vCPUs, and the base price of the container service.

interface ContainerServicePower {
cpuCount?: number | null;
isActive?: boolean | null;
name?: string | null;
powerId?: string | null;
price?: number | null;
ramSizeInGb?: number | null;
}

§Properties

§
cpuCount?: number | null
[src]

The number of vCPUs included in the power.

§
isActive?: boolean | null
[src]

A Boolean value indicating whether the power is active and can be specified for container services.

§
name?: string | null
[src]

The friendly name of the power (e.g., nano).

§
powerId?: string | null
[src]

The ID of the power (e.g., nano-1).

§
price?: number | null
[src]

The monthly price of the power in USD.

§
ramSizeInGb?: number | null
[src]

The amount of RAM (in GB) of the power.