Module Values.DiscovererOutputSource

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

    The description of the discoverer.

    *)
  2. discovererArn : string option;
    (*

    The ARN of the discoverer.

    *)
  3. discovererId : string option;
    (*

    The ID of the discoverer.

    *)
  4. sourceArn : string option;
    (*

    The ARN of the event bus.

    *)
  5. state : DiscovererState.t option;
    (*

    The state of the discoverer.

    *)
  6. crossAccount : bool option;
    (*

    The Status if the discoverer will discover schemas from events sent from another account.

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

    Tags associated with the resource.

    *)
}
Sourceval make : ?description:??? -> ?discovererArn:??? -> ?discovererId:??? -> ?sourceArn:??? -> ?state:??? -> ?crossAccount:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `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