// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`AddUserToGroup`](crate::operation::add_user_to_group::builders::AddUserToGroupFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`group_name(impl Into<String>)`](crate::operation::add_user_to_group::builders::AddUserToGroupFluentBuilder::group_name) / [`set_group_name(Option<String>)`](crate::operation::add_user_to_group::builders::AddUserToGroupFluentBuilder::set_group_name):<br>required: **true**<br><p>The name of the group to update.</p> <p>This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p><br>
/// - [`user_name(impl Into<String>)`](crate::operation::add_user_to_group::builders::AddUserToGroupFluentBuilder::user_name) / [`set_user_name(Option<String>)`](crate::operation::add_user_to_group::builders::AddUserToGroupFluentBuilder::set_user_name):<br>required: **true**<br><p>The name of the user to add.</p> <p>This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-</p><br>
/// - On success, responds with [`AddUserToGroupOutput`](crate::operation::add_user_to_group::AddUserToGroupOutput)
/// - On failure, responds with [`SdkError<AddUserToGroupError>`](crate::operation::add_user_to_group::AddUserToGroupError)
pub fn add_user_to_group(&self) -> crate::operation::add_user_to_group::builders::AddUserToGroupFluentBuilder {
crate::operation::add_user_to_group::builders::AddUserToGroupFluentBuilder::new(self.handle.clone())
}
}