Glue.Schema
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-schema.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-schema-registry.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-schema-schemaversion.html
type properties = {
schema_definition : string;
description : string option;
data_format : string;
registry : registry option;
compatibility : string;
name : string;
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 ]
val create_attributes : string -> attributes