Module Values.AddUserToGroupRequestSource

Adds the specified user to the specified group.

Sourcetype nonrec t = {
  1. groupName : GroupNameType.t;
    (*

    The name of the group to update. This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

    *)
  2. userName : ExistingUserNameType.t;
    (*

    The name of the user to add. This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

    *)
}
Sourceval context_ : string
Sourceval make : groupName:GroupNameType.t -> userName:ExistingUserNameType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GroupNameType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t