Module Values.GameSessionDetailSource

A game session's properties plus the protection policy currently in force.

Sourcetype nonrec t = {
  1. gameSession : GameSession.t option;
    (*

    Object that describes a game session.

    *)
  2. protectionPolicy : ProtectionPolicy.t option;
    (*

    Current status of protection for the game session. NoProtection -- The game session can be terminated during a scale-down event. FullProtection -- If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

    *)
}
Sourceval make : ?gameSession:??? -> ?protectionPolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of WholeNumber.t | `List of [> `Structure of (string * [> `String of GamePropertyKey.t ]) list ] list | `String of NonZeroAndMaxString.t | `Timestamp of Timestamp.t ]) list ]) 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