Struct aws_sdk_iam::input::RemoveUserFromGroupInput
source · [−]#[non_exhaustive]pub struct RemoveUserFromGroupInput { /* private fields */ }Implementations
sourceimpl RemoveUserFromGroupInput
impl RemoveUserFromGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RemoveUserFromGroup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RemoveUserFromGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RemoveUserFromGroup>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RemoveUserFromGroupInput.
sourceimpl RemoveUserFromGroupInput
impl RemoveUserFromGroupInput
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 remove.
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
sourceimpl Clone for RemoveUserFromGroupInput
impl Clone for RemoveUserFromGroupInput
sourcefn clone(&self) -> RemoveUserFromGroupInput
fn clone(&self) -> RemoveUserFromGroupInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RemoveUserFromGroupInput
impl Debug for RemoveUserFromGroupInput
sourceimpl PartialEq<RemoveUserFromGroupInput> for RemoveUserFromGroupInput
impl PartialEq<RemoveUserFromGroupInput> for RemoveUserFromGroupInput
sourcefn eq(&self, other: &RemoveUserFromGroupInput) -> bool
fn eq(&self, other: &RemoveUserFromGroupInput) -> bool
impl StructuralPartialEq for RemoveUserFromGroupInput
Auto Trait Implementations
impl RefUnwindSafe for RemoveUserFromGroupInput
impl Send for RemoveUserFromGroupInput
impl Sync for RemoveUserFromGroupInput
impl Unpin for RemoveUserFromGroupInput
impl UnwindSafe for RemoveUserFromGroupInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more