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

AwsEcsServiceCapacityProviderStrategyDetails

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

Strategy item for the capacity provider strategy that the service uses.

interface AwsEcsServiceCapacityProviderStrategyDetails {
Base?: number | null;
CapacityProvider?: string | null;
Weight?: number | null;
}

§Properties

§
Base?: number | null
[src]

The minimum number of tasks to run on the capacity provider. Only one strategy item can specify a value for Base.

The value must be between 0 and 100000.

§
CapacityProvider?: string | null
[src]

The short name of the capacity provider.

§
Weight?: number | null
[src]

The relative percentage of the total number of tasks that should use the capacity provider.

If no weight is specified, the default value is 0. At least one capacity provider must have a weight greater than 0.

The value can be between 0 and 1000.