Module Values.CreateDiscovererInputSource

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

    A description for the discoverer.

    *)
  2. sourceArn : string;
    (*

    The ARN of the event bus.

    *)
  3. crossAccount : bool option;
    (*

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

    *)
  4. tags : Tags.t option;
    (*

    Tags associated with the resource.

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