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
sourceimpl 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.
sourceimpl MasterUserOptions
impl MasterUserOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MasterUserOptions
.
Trait Implementations
sourceimpl Clone for MasterUserOptions
impl Clone for MasterUserOptions
sourcefn clone(&self) -> MasterUserOptions
fn clone(&self) -> MasterUserOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MasterUserOptions
impl Debug for MasterUserOptions
sourceimpl PartialEq<MasterUserOptions> for MasterUserOptions
impl PartialEq<MasterUserOptions> for MasterUserOptions
sourcefn eq(&self, other: &MasterUserOptions) -> bool
fn eq(&self, other: &MasterUserOptions) -> bool
impl StructuralPartialEq for MasterUserOptions
Auto Trait Implementations
impl RefUnwindSafe for MasterUserOptions
impl Send for MasterUserOptions
impl Sync for MasterUserOptions
impl Unpin for MasterUserOptions
impl UnwindSafe for MasterUserOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more