Module Values.AccountSettingsSource

Settings related to the Amazon Chime account. This includes settings that start or stop remote control of shared screens, or start or stop the dial-out option in the Amazon Chime web application. For more information about these settings, see Use the Policies Page in the Amazon Chime Administration Guide.

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

    Setting that stops or starts remote control of shared screens during meetings.

    *)
  2. enableDialOut : Boolean.t option;
    (*

    Setting that allows meeting participants to choose the Call me at a phone number option. For more information, see Join a Meeting without the Amazon Chime App.

    *)
}
Sourceval make : ?disableRemoteControl:??? -> ?enableDialOut:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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