Module CustomerProfiles.ObjectType

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html

type object_type_field = {
  1. target : string option;
  2. content_type : string option;
  3. source : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypefield.html

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

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

and object_type_key = {
  1. field_names : string list option;
  2. standard_identifiers : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypekey.html

and field_map = {
  1. name : string option;
  2. object_type_field : object_type_field option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-fieldmap.html

and key_map = {
  1. object_type_key_list : object_type_key list option;
  2. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-keymap.html

type properties = {
  1. description : string option;
  2. fields : field_map list option;
  3. domain_name : string;
  4. allow_profile_creation : bool option;
  5. object_type_name : string option;
  6. keys : key_map list option;
  7. source_last_updated_timestamp_format : string option;
  8. encryption_key : string option;
  9. tags : tag list option;
  10. template_id : string option;
  11. expiration_days : int option;
}

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

val make_properties : ?description:string -> ?fields:field_map list -> domain_name:string -> ?allow_profile_creation:bool -> ?object_type_name:string -> ?keys:key_map list -> ?source_last_updated_timestamp_format:string -> ?encryption_key:string -> ?tags:tag list -> ?template_id:string -> ?expiration_days:int -> unit -> properties
val make_object_type_field : ?target:string -> ?content_type:string -> ?source:string -> unit -> object_type_field
val make_tag : value:string -> key:string -> unit -> tag
val make_object_type_key : ?field_names:string list -> ?standard_identifiers:string list -> unit -> object_type_key
val make_field_map : ?name:string -> ?object_type_field:object_type_field -> unit -> field_map
val make_key_map : ?object_type_key_list:object_type_key list -> ?name:string -> unit -> key_map
val yojson_of_object_type_field : object_type_field -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_object_type_key : object_type_key -> Yojson.Safe.t
val yojson_of_field_map : field_map -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_key_map : key_map -> [> `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_updated_at : string;
  3. created_at : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string