Module ElastiCache.User

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

type authentication_mode = {
  1. type_ : string;
  2. passwords : string list option;
}

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

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

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

type properties = {
  1. authentication_mode : authentication_mode option;
  2. user_name : string;
  3. no_password_required : bool option;
  4. access_string : string option;
  5. user_id : string;
  6. passwords : string list option;
  7. engine : string;
  8. tags : tag list option;
}

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

val make_properties : ?authentication_mode:authentication_mode -> user_name:string -> ?no_password_required:bool -> ?access_string:string -> user_id:string -> ?passwords:string list -> engine:string -> ?tags:tag list -> unit -> properties
val make_authentication_mode : type_:string -> ?passwords:string list -> unit -> authentication_mode
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_authentication_mode : authentication_mode -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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. status : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string