Module EventSchemas.Discoverer

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html

type tags_entry = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-discoverer-tagsentry.html

type properties = {
  1. cross_account : bool option;
  2. description : string option;
  3. source_arn : string;
  4. tags : tags_entry list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html;

val make_properties : ?cross_account:bool -> ?description:string -> source_arn:string -> ?tags:tags_entry list -> unit -> properties
val make_tags_entry : value:string -> key:string -> unit -> tags_entry
val yojson_of_tags_entry : tags_entry -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. discoverer_arn : string;
  3. discoverer_id : string;
  4. state : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string