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

UpdateFleetCapacityInput

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

Represents the input for a request operation.

interface UpdateFleetCapacityInput {
DesiredInstances?: number | null;
FleetId: string;
Location?: string | null;
MaxSize?: number | null;
MinSize?: number | null;
}

§Properties

§
DesiredInstances?: number | null
[src]

The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits.

§
FleetId: string
[src]

A unique identifier for the fleet to update capacity settings for. You can use either the fleet ID or ARN value.

§
Location?: string | null
[src]

The name of a remote location to update fleet capacity settings for, in the form of an AWS Region code such as us-west-2.

§
MaxSize?: number | null
[src]

The maximum number of instances that are allowed in the specified fleet location. If this parameter is not set, the default is 1.

§
MinSize?: number | null
[src]

The minimum number of instances that are allowed in the specified fleet location. If this parameter is not set, the default is 0.