Module Glue.SchemaVersion

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schemaversion.html

type schema = {
  1. registry_name : string option;
  2. schema_arn : string option;
  3. schema_name : string option;
}

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

type properties = {
  1. schema_definition : string;
  2. schema : schema;
}

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

val make_properties : schema_definition:string -> schema:schema -> unit -> properties
val make_schema : ?registry_name:string -> ?schema_arn:string -> ?schema_name:string -> unit -> schema
val yojson_of_schema : schema -> [> `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. version_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string