{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-structure/gamelift-location-state-structure.json", "name": "LocationState", "description": "

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.

", "type": "object", "properties": { "Location": { "allOf": [ { "$ref": "#/components/schemas/LocationStringModel" }, { "description": "The fleet location, expressed as an Amazon Web Services Region code such as us-west-2. " } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/FleetStatus" }, { "description": "The life-cycle status of a fleet location. " } ] } } }