Module Connect.User

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-user.html

type user_proficiency = {
  1. attribute_value : string;
  2. attribute_name : string;
  3. level : float;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-userproficiency.html

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

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

and user_identity_info = {
  1. email : string option;
  2. first_name : string option;
  3. secondary_email : string option;
  4. last_name : string option;
  5. mobile : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-useridentityinfo.html

and user_phone_config = {
  1. auto_accept : bool option;
  2. phone_type : string;
  3. desk_phone_number : string option;
  4. after_contact_work_time_limit : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-userphoneconfig.html

type properties = {
  1. routing_profile_arn : string;
  2. username : string;
  3. phone_config : user_phone_config;
  4. instance_arn : string;
  5. directory_user_id : string option;
  6. identity_info : user_identity_info option;
  7. hierarchy_group_arn : string option;
  8. security_profile_arns : string list;
  9. tags : tag list option;
  10. user_proficiencies : user_proficiency list option;
  11. password : string option;
}

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

val make_properties : routing_profile_arn:string -> username:string -> phone_config:user_phone_config -> instance_arn:string -> ?directory_user_id:string -> ?identity_info:user_identity_info -> ?hierarchy_group_arn:string -> security_profile_arns:string list -> ?tags:tag list -> ?user_proficiencies:user_proficiency list -> ?password:string -> unit -> properties
val make_user_proficiency : attribute_value:string -> attribute_name:string -> level:float -> unit -> user_proficiency
val make_tag : value:string -> key:string -> unit -> tag
val make_user_identity_info : ?email:string -> ?first_name:string -> ?secondary_email:string -> ?last_name:string -> ?mobile:string -> unit -> user_identity_info
val make_user_phone_config : ?auto_accept:bool -> phone_type:string -> ?desk_phone_number:string -> ?after_contact_work_time_limit:int -> unit -> user_phone_config
val yojson_of_user_proficiency : user_proficiency -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_user_identity_info : user_identity_info -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_user_phone_config : user_phone_config -> [> `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. user_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string