Module Values.FleetUtilizationSource

Current resource utilization statistics in a specified fleet or location. The location value might refer to a fleet's remote location or its home region.

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

    A unique identifier for the fleet associated with the location.

    *)
  2. fleetArn : FleetArn.t option;
    (*

    The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift Servers fleet resource and uniquely identifies it. ARNs are unique across all Regions. Format is arn:aws:gamelift:<region>::fleet/fleet-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912.

    *)
  3. activeServerProcessCount : WholeNumber.t option;
    (*

    The number of server processes in ACTIVE status that are currently running across all instances in the fleet location.

    *)
  4. activeGameSessionCount : WholeNumber.t option;
    (*

    The number of active game sessions that are currently being hosted across all instances in the fleet location.

    *)
  5. currentPlayerSessionCount : WholeNumber.t option;
    (*

    The number of active player sessions that are currently being hosted across all instances in the fleet location.

    *)
  6. maximumPlayerSessionCount : WholeNumber.t option;
    (*

    The maximum number of players allowed across all game sessions that are currently being hosted across all instances in the fleet location.

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

    The fleet location for the fleet utilization information, expressed as an Amazon Web Services Region code, such as us-west-2.

    *)
}
Sourceval make : ?fleetId:??? -> ?fleetArn:??? -> ?activeServerProcessCount:??? -> ?activeGameSessionCount:??? -> ?currentPlayerSessionCount:??? -> ?maximumPlayerSessionCount:??? -> ?location:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of WholeNumber.t | `String of FleetId.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