Module EventSchemas.Schema

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

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

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

type properties = {
  1. type_ : string;
  2. description : string option;
  3. content : string;
  4. registry_name : string;
  5. schema_name : string option;
  6. tags : tags_entry list option;
}

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

val make_properties : type_:string -> ?description:string -> content:string -> registry_name:string -> ?schema_name: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. last_modified : string;
  3. schema_version : string;
  4. version_created_date : string;
  5. schema_arn : string;
  6. schema_name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string