Module Glue.Schema

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

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

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and registry = {
  1. arn : string option;
  2. name : string option;
}

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

and schema_version = {
  1. is_latest : bool option;
  2. version_number : int option;
}

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

type properties = {
  1. schema_definition : string;
  2. description : string option;
  3. data_format : string;
  4. registry : registry option;
  5. compatibility : string;
  6. tags : tag list option;
  7. name : string;
  8. checkpoint_version : schema_version option;
}

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

val make_properties : schema_definition:string -> ?description:string -> data_format:string -> ?registry:registry -> compatibility:string -> ?tags:tag list -> name:string -> ?checkpoint_version:schema_version -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_registry : ?arn:string -> ?name:string -> unit -> registry
val make_schema_version : ?is_latest:bool -> ?version_number:int -> unit -> schema_version
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_registry : registry -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_schema_version : schema_version -> [> `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. initial_schema_version_id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string