Module EntityResolution.SchemaMapping

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-schemamapping.html

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

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

and schema_input_attribute = {
  1. group_name : string option;
  2. type_ : string;
  3. sub_type : string option;
  4. match_key : string option;
  5. field_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-schemamapping-schemainputattribute.html

type properties = {
  1. description : string option;
  2. mapped_input_fields : schema_input_attribute list;
  3. schema_name : string;
  4. tags : tag list option;
}

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

val make_properties : ?description:string -> mapped_input_fields:schema_input_attribute list -> schema_name:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_schema_input_attribute : ?group_name:string -> type_:string -> ?sub_type:string -> ?match_key:string -> field_name:string -> unit -> schema_input_attribute
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_schema_input_attribute : schema_input_attribute -> [> `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. created_at : string;
  3. updated_at : string;
  4. schema_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string