Struct aws_sdk_iam::input::AddUserToGroupInput  
source · #[non_exhaustive]pub struct AddUserToGroupInput { /* private fields */ }Implementations§
source§impl AddUserToGroupInput
 
impl AddUserToGroupInput
sourcepub async fn make_operation(
    &self,
    _config: &Config
) -> Result<Operation<AddUserToGroup, AwsResponseRetryClassifier>, BuildError>
 
pub async fn make_operation(
    &self,
    _config: &Config
) -> Result<Operation<AddUserToGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AddUserToGroup>
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AddUserToGroupInput.
source§impl AddUserToGroupInput
 
impl AddUserToGroupInput
sourcepub fn group_name(&self) -> Option<&str>
 
pub fn group_name(&self) -> Option<&str>
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: _+=,.@-
sourcepub fn user_name(&self) -> Option<&str>
 
pub fn user_name(&self) -> Option<&str>
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: _+=,.@-
Trait Implementations§
source§impl Clone for AddUserToGroupInput
 
impl Clone for AddUserToGroupInput
source§fn clone(&self) -> AddUserToGroupInput
 
fn clone(&self) -> AddUserToGroupInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for AddUserToGroupInput
 
impl Debug for AddUserToGroupInput
source§impl PartialEq<AddUserToGroupInput> for AddUserToGroupInput
 
impl PartialEq<AddUserToGroupInput> for AddUserToGroupInput
source§fn eq(&self, other: &AddUserToGroupInput) -> bool
 
fn eq(&self, other: &AddUserToGroupInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.