#[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 get_master_user_arn(&self) -> &Option<String>
pub fn get_master_user_arn(&self) -> &Option<String>
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 get_master_user_name(&self) -> &Option<String>
pub fn get_master_user_name(&self) -> &Option<String>
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 get_master_user_password(&self) -> &Option<String>
pub fn get_master_user_password(&self) -> &Option<String>
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for MasterUserOptionsBuilder
impl PartialEq for MasterUserOptionsBuilder
source§fn eq(&self, other: &MasterUserOptionsBuilder) -> bool
fn eq(&self, other: &MasterUserOptionsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.