Struct aws_sdk_iam::operation::get_user::GetUserInput
source · #[non_exhaustive]pub struct GetUserInput {
pub user_name: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_name: Option<String>
The name of the user to get information about.
This parameter is optional. If it is not included, it defaults to the user making the request. 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: _+=,.@-
Implementations§
source§impl GetUserInput
impl GetUserInput
sourcepub fn user_name(&self) -> Option<&str>
pub fn user_name(&self) -> Option<&str>
The name of the user to get information about.
This parameter is optional. If it is not included, it defaults to the user making the request. 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: _+=,.@-
source§impl GetUserInput
impl GetUserInput
sourcepub fn builder() -> GetUserInputBuilder
pub fn builder() -> GetUserInputBuilder
Creates a new builder-style object to manufacture GetUserInput
.
Trait Implementations§
source§impl Clone for GetUserInput
impl Clone for GetUserInput
source§fn clone(&self) -> GetUserInput
fn clone(&self) -> GetUserInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetUserInput
impl Debug for GetUserInput
source§impl PartialEq for GetUserInput
impl PartialEq for GetUserInput
source§fn eq(&self, other: &GetUserInput) -> bool
fn eq(&self, other: &GetUserInput) -> bool
self
and other
values to be equal, and is used
by ==
.