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

LocationState

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

A fleet location and its life-cycle state. A location state object might be used to describe a fleet's remote location or home Region. Life-cycle state tracks the progress of launching the first instance in a new location and preparing it for game hosting, and then removing all instances and deleting the location from the fleet.

Related actions

"CreateFleet" | "CreateFleetLocations" | "DeleteFleetLocations"

interface LocationState {
Location?: string | null;
Status?: FleetStatus | null;
}

§Properties

§
Location?: string | null
[src]

The fleet location, expressed as an AWS Region code such as us-west-2.

§
Status?: FleetStatus | null
[src]

The life-cycle status of a fleet location.