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

ContainerRecommendation

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

The CPU and memory recommendations for a container within the tasks of your Amazon ECS service.

interface ContainerRecommendation {
containerName?: string | null;
cpu?: number | null;
memorySizeConfiguration?: MemorySizeConfiguration | null;
}

§Properties

§
containerName?: string | null
[src]

The name of the container.

§
cpu?: number | null
[src]

The recommended number of CPU units reserved for the container.

§
memorySizeConfiguration?: MemorySizeConfiguration | null
[src]

The recommended memory size configurations for the container.