#[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
ARN for the master user (if IAM is enabled).
sourcepub fn set_master_user_arn(self, input: Option<String>) -> Self
pub fn set_master_user_arn(self, input: Option<String>) -> Self
ARN for the master user (if IAM is enabled).
sourcepub fn get_master_user_arn(&self) -> &Option<String>
pub fn get_master_user_arn(&self) -> &Option<String>
ARN for the master user (if IAM is enabled).
sourcepub fn master_user_name(self, input: impl Into<String>) -> Self
pub fn master_user_name(self, input: impl Into<String>) -> Self
The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.
sourcepub fn set_master_user_name(self, input: Option<String>) -> Self
pub fn set_master_user_name(self, input: Option<String>) -> Self
The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.
sourcepub fn get_master_user_name(&self) -> &Option<String>
pub fn get_master_user_name(&self) -> &Option<String>
The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.
sourcepub fn master_user_password(self, input: impl Into<String>) -> Self
pub fn master_user_password(self, input: impl Into<String>) -> Self
The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.
sourcepub fn set_master_user_password(self, input: Option<String>) -> Self
pub fn set_master_user_password(self, input: Option<String>) -> Self
The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.
sourcepub fn get_master_user_password(&self) -> &Option<String>
pub fn get_master_user_password(&self) -> &Option<String>
The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.
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 ==
.