Module Values.UpdateDiscovererRequestSource

Updates the discoverer

Sourcetype nonrec t = {
  1. description : string option;
    (*

    The description of the discoverer to update.

    *)
  2. discovererId : string;
    (*

    The ID of the discoverer.

    *)
  3. crossAccount : bool option;
    (*

    Support discovery of schemas in events sent to the bus from another account. (default: true)

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?crossAccount:??? -> discovererId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `String of string ]) 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