Module Values.DeleteFleetLocationsInputSource

This API works with the following fleet types: EC2, Container Removes locations from a multi-location fleet. When deleting a location, all game server process and all instances that are still active in the location are shut down. To delete fleet locations, identify the fleet ID and provide a list of the locations to be deleted. If successful, GameLift sets the location status to DELETING, and begins to shut down existing server processes and terminate instances in each location being deleted. When completed, the location status changes to TERMINATED. Learn more Setting up Amazon GameLift Servers fleets

Sourcetype nonrec t = {
  1. fleetId : FleetIdOrArn.t;
    (*

    A unique identifier for the fleet to delete locations for. You can use either the fleet ID or ARN value.

    *)
  2. locations : LocationList.t;
    (*

    The list of fleet locations to delete. Specify locations in the form of an Amazon Web Services Region code, such as us-west-2.

    *)
}
Sourceval context_ : string
Sourceval make : fleetId:FleetIdOrArn.t -> locations:LocationList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LocationStringModel.t ] list | `String of FleetIdOrArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t