Struct aws_sdk_elasticache::input::CreateUserInput
source ·
[−]#[non_exhaustive]pub struct CreateUserInput {
pub user_id: Option<String>,
pub user_name: Option<String>,
pub engine: Option<String>,
pub passwords: Option<Vec<String>>,
pub access_string: Option<String>,
pub no_password_required: Option<bool>,
pub tags: Option<Vec<Tag>>,
}
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.
user_name: Option<String>
The username of the user.
engine: Option<String>
The current supported value is Redis.
passwords: Option<Vec<String>>
Passwords used for this user. You can create up to two passwords for each user.
access_string: Option<String>
Access permissions string used for this user.
no_password_required: Option<bool>
Indicates a password is not required for this user.
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateUser, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateUser, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateUser
>
Creates a new builder-style object to manufacture CreateUserInput
Passwords used for this user. You can create up to two passwords for each user.
Access permissions string used for this user.
Indicates a password is not required for this user.
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
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 CreateUserInput
impl Send for CreateUserInput
impl Sync for CreateUserInput
impl Unpin for CreateUserInput
impl UnwindSafe for CreateUserInput
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