Module Values.ApplicationSettingsResponseSource

Describes the persistent application settings for users of a stack.

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

    Specifies whether persistent application settings are enabled 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.

    *)
  3. s3BucketName : String_.t option;
    (*

    The S3 bucket where users’ persistent application settings are stored. When persistent application settings are enabled for the first time for an account in an AWS Region, an S3 bucket is created. The bucket is unique to the AWS account and the Region.

    *)
}
Sourceval make : ?enabled:??? -> ?settingsGroup:??? -> ?s3BucketName:??? -> 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