Struct aws_sdk_memorydb::model::authentication_mode::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for AuthenticationMode.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn type(self, input: InputAuthenticationType) -> Self
pub fn type(self, input: InputAuthenticationType) -> Self
Indicates whether the user requires a password to authenticate. All newly-created users require a password.
sourcepub fn set_type(self, input: Option<InputAuthenticationType>) -> Self
pub fn set_type(self, input: Option<InputAuthenticationType>) -> Self
Indicates whether the user requires a password to authenticate. All newly-created users require a password.
sourcepub fn passwords(self, input: impl Into<String>) -> Self
pub fn passwords(self, input: impl Into<String>) -> Self
Appends an item to passwords.
To override the contents of this collection use set_passwords.
The password(s) used for authentication
sourcepub fn set_passwords(self, input: Option<Vec<String>>) -> Self
pub fn set_passwords(self, input: Option<Vec<String>>) -> Self
The password(s) used for authentication
sourcepub fn build(self) -> AuthenticationMode
pub fn build(self) -> AuthenticationMode
Consumes the builder and constructs a AuthenticationMode.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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