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

ECSServiceRecommendationOption

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

Describes the recommendation options for an Amazon ECS service.

interface ECSServiceRecommendationOption {
containerRecommendations?: ContainerRecommendation[] | null;
cpu?: number | null;
memory?: number | null;
projectedUtilizationMetrics?: ECSServiceProjectedUtilizationMetric[] | null;
savingsOpportunity?: SavingsOpportunity | null;
}

§Properties

§
containerRecommendations?: ContainerRecommendation[] | null
[src]

The CPU and memory size recommendations for the containers within the task of your Amazon ECS service.

§
cpu?: number | null
[src]

The CPU size of the Amazon ECS service recommendation option.

§
memory?: number | null
[src]

The memory size of the Amazon ECS service recommendation option.

§
projectedUtilizationMetrics?: ECSServiceProjectedUtilizationMetric[] | null
[src]

An array of objects that describe the projected utilization metrics of the Amazon ECS service recommendation option.

§
savingsOpportunity?: SavingsOpportunity | null
[src]