Module Values.PutDefaultApplicationSettingRequestSource

Sets the default application to the application with the specified ARN. To remove the default application, use the GetDefaultApplicationSetting operation to get the current default and then call the PutDefaultApplicationSetting with the current applications ARN and the setAsDefault parameter set to false.

Sourcetype nonrec t = {
  1. applicationArn : ARN.t;
  2. setAsDefault : Boolean.t;
    (*

    Set to true to set the specified ARN as the default application. Set to false to clear the default application.

    *)
}
Sourceval context_ : string
Sourceval make : applicationArn:ARN.t -> setAsDefault:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of ARN.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