Module Values.DiscovererSummarySource

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

    The ARN of the discoverer.

    *)
  2. discovererId : string option;
    (*

    The ID of the discoverer.

    *)
  3. sourceArn : string option;
    (*

    The ARN of the event bus.

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

    The state of the discoverer.

    *)
  5. crossAccount : bool option;
    (*

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

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

    Tags associated with the resource.

    *)
}
Sourceval make : ?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