Struct aws_sdk_opensearch::model::MasterUserOptions
source · #[non_exhaustive]pub struct MasterUserOptions { /* private fields */ }
Expand description
Credentials for the master user for a domain.
Implementations§
source§impl MasterUserOptions
impl MasterUserOptions
sourcepub fn master_user_arn(&self) -> Option<&str>
pub fn master_user_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) for the master user. Only specify if InternalUserDatabaseEnabled
is false
.
sourcepub fn master_user_name(&self) -> Option<&str>
pub fn master_user_name(&self) -> Option<&str>
User name for the master user. Only specify if InternalUserDatabaseEnabled
is true
.
sourcepub fn master_user_password(&self) -> Option<&str>
pub fn master_user_password(&self) -> Option<&str>
Password for the master user. Only specify if InternalUserDatabaseEnabled
is true
.
source§impl MasterUserOptions
impl MasterUserOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MasterUserOptions
.
Trait Implementations§
source§impl Clone for MasterUserOptions
impl Clone for MasterUserOptions
source§fn clone(&self) -> MasterUserOptions
fn clone(&self) -> MasterUserOptions
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 MasterUserOptions
impl Debug for MasterUserOptions
source§impl PartialEq<MasterUserOptions> for MasterUserOptions
impl PartialEq<MasterUserOptions> for MasterUserOptions
source§fn eq(&self, other: &MasterUserOptions) -> bool
fn eq(&self, other: &MasterUserOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.