Module Values.StartFleetActionsInputSource

This API works with the following fleet types: EC2, Container Resumes certain types of activity on fleet instances that were suspended with StopFleetActions. For multi-location fleets, fleet actions are managed separately for each location. Currently, this operation is used to restart a fleet's auto-scaling activity. This operation can be used in the following ways: To restart actions on instances in the fleet's home Region, provide a fleet ID and the type of actions to resume. To restart actions on instances in one of the fleet's remote locations, provide a fleet ID, a location name, and the type of actions to resume. If successful, Amazon GameLift Servers once again initiates scaling events as triggered by the fleet's scaling policies. If actions on the fleet location were never stopped, this operation will have no effect. Learn more Setting up Amazon GameLift Servers fleets

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

    A unique identifier for the fleet to restart actions on. You can use either the fleet ID or ARN value.

    *)
  2. actions : FleetActionList.t;
    (*

    List of actions to restart on the fleet.

    *)
  3. location : LocationStringModel.t option;
    (*

    The fleet location to restart fleet actions for. Specify a location in the form of an Amazon Web Services Region code, such as us-west-2.

    *)
}
Sourceval context_ : string
Sourceval make : ?location:??? -> fleetId:FleetIdOrArn.t -> actions:FleetActionList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] 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