#[non_exhaustive]pub struct MasterUserOptionsBuilder { /* private fields */ }Expand description
A builder for MasterUserOptions.
Implementations§
source§impl MasterUserOptionsBuilder
impl MasterUserOptionsBuilder
sourcepub fn master_user_arn(self, input: impl Into<String>) -> Self
pub fn master_user_arn(self, input: impl Into<String>) -> Self
Amazon Resource Name (ARN) for the master user. Only specify if InternalUserDatabaseEnabled is false.
sourcepub fn set_master_user_arn(self, input: Option<String>) -> Self
pub fn set_master_user_arn(self, input: Option<String>) -> Self
Amazon Resource Name (ARN) for the master user. Only specify if InternalUserDatabaseEnabled is false.
sourcepub fn master_user_name(self, input: impl Into<String>) -> Self
pub fn master_user_name(self, input: impl Into<String>) -> Self
User name for the master user. Only specify if InternalUserDatabaseEnabled is true.
sourcepub fn set_master_user_name(self, input: Option<String>) -> Self
pub fn set_master_user_name(self, input: Option<String>) -> Self
User name for the master user. Only specify if InternalUserDatabaseEnabled is true.
sourcepub fn master_user_password(self, input: impl Into<String>) -> Self
pub fn master_user_password(self, input: impl Into<String>) -> Self
Password for the master user. Only specify if InternalUserDatabaseEnabled is true.
sourcepub fn set_master_user_password(self, input: Option<String>) -> Self
pub fn set_master_user_password(self, input: Option<String>) -> Self
Password for the master user. Only specify if InternalUserDatabaseEnabled is true.
sourcepub fn build(self) -> MasterUserOptions
pub fn build(self) -> MasterUserOptions
Consumes the builder and constructs a MasterUserOptions.
Trait Implementations§
source§impl Clone for MasterUserOptionsBuilder
impl Clone for MasterUserOptionsBuilder
source§fn clone(&self) -> MasterUserOptionsBuilder
fn clone(&self) -> MasterUserOptionsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for MasterUserOptionsBuilder
impl Debug for MasterUserOptionsBuilder
source§impl Default for MasterUserOptionsBuilder
impl Default for MasterUserOptionsBuilder
source§fn default() -> MasterUserOptionsBuilder
fn default() -> MasterUserOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<MasterUserOptionsBuilder> for MasterUserOptionsBuilder
impl PartialEq<MasterUserOptionsBuilder> for MasterUserOptionsBuilder
source§fn eq(&self, other: &MasterUserOptionsBuilder) -> bool
fn eq(&self, other: &MasterUserOptionsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MasterUserOptionsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for MasterUserOptionsBuilder
impl Send for MasterUserOptionsBuilder
impl Sync for MasterUserOptionsBuilder
impl Unpin for MasterUserOptionsBuilder
impl UnwindSafe for MasterUserOptionsBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more