Struct aws_sdk_elasticache::input::ModifyUserInput
source ·
[−]#[non_exhaustive]pub struct ModifyUserInput {
pub user_id: Option<String>,
pub access_string: Option<String>,
pub append_access_string: Option<String>,
pub passwords: Option<Vec<String>>,
pub no_password_required: Option<bool>,
}
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_id: Option<String>
The ID of the user.
access_string: Option<String>
Access permissions string used for this user.
append_access_string: Option<String>
Adds additional user permissions to the access string.
passwords: Option<Vec<String>>
The passwords belonging to the user. You are allowed up to two.
no_password_required: Option<bool>
Indicates no password is required for the user.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyUser, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyUser, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ModifyUser
>
Creates a new builder-style object to manufacture ModifyUserInput
Access permissions string used for this user.
Adds additional user permissions to the access string.
The passwords belonging to the user. You are allowed up to two.
Indicates no password is required for the user.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ModifyUserInput
impl Send for ModifyUserInput
impl Sync for ModifyUserInput
impl Unpin for ModifyUserInput
impl UnwindSafe for ModifyUserInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more