Module Values.ApplicationSettingsSource

The persistent application settings for users of a stack.

Sourcetype nonrec t = {
  1. enabled : Boolean.t;
    (*

    Enables or disables persistent application settings for users during their streaming sessions.

    *)
  2. settingsGroup : SettingsGroup.t option;
    (*

    The path prefix for the S3 bucket where users’ persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack.

    *)
}
Sourceval context_ : string
Sourceval make : ?settingsGroup:??? -> enabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of SettingsGroup.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