Module MemoryDB.User

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

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

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

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

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

type properties = {
  1. authentication_mode : authentication_mode option;
  2. user_name : string;
  3. access_string : string option;
  4. tags : tag list option;
}

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

val make_properties : ?authentication_mode:authentication_mode -> user_name:string -> ?access_string:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_authentication_mode : ?type_:string -> ?passwords:string list -> unit -> authentication_mode
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_authentication_mode : authentication_mode -> [> `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