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
sourceimpl CreateUserInput
impl CreateUserInput
sourcepub 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
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateUserInput
sourceimpl CreateUserInput
impl CreateUserInput
sourcepub fn passwords(&self) -> Option<&[String]>
pub fn passwords(&self) -> Option<&[String]>
Passwords used for this user. You can create up to two passwords for each user.
sourcepub fn access_string(&self) -> Option<&str>
pub fn access_string(&self) -> Option<&str>
Access permissions string used for this user.
sourcepub fn no_password_required(&self) -> Option<bool>
pub fn no_password_required(&self) -> 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.
Trait Implementations
sourceimpl Clone for CreateUserInput
impl Clone for CreateUserInput
sourcefn clone(&self) -> CreateUserInput
fn clone(&self) -> CreateUserInput
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 more
sourceimpl Debug for CreateUserInput
impl Debug for CreateUserInput
sourceimpl PartialEq<CreateUserInput> for CreateUserInput
impl PartialEq<CreateUserInput> for CreateUserInput
sourcefn eq(&self, other: &CreateUserInput) -> bool
fn eq(&self, other: &CreateUserInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateUserInput) -> bool
fn ne(&self, other: &CreateUserInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateUserInput
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more