Struct aws_sdk_elasticsearch::model::MasterUserOptions
source · #[non_exhaustive]pub struct MasterUserOptions { /* private fields */ }
Expand description
Credentials for the master user: username and password, ARN, or both.
Implementations§
source§impl MasterUserOptions
impl MasterUserOptions
sourcepub fn master_user_arn(&self) -> Option<&str>
pub fn master_user_arn(&self) -> Option<&str>
ARN for the master user (if IAM is enabled).
sourcepub fn master_user_name(&self) -> Option<&str>
pub fn master_user_name(&self) -> Option<&str>
The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.
sourcepub fn master_user_password(&self) -> Option<&str>
pub fn master_user_password(&self) -> Option<&str>
The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.
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 ==
.