ElastiCache.User
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-user.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-user-authenticationmode.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
authentication_mode : authentication_mode option;
user_name : string;
no_password_required : bool option;
access_string : string option;
user_id : string;
passwords : string list option;
engine : string;
}
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 ]
val create_attributes : string -> attributes