Struct aws_sdk_opensearch::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 OpenSearch 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 OpenSearch 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 more