#[non_exhaustive]pub struct UpgradeElasticsearchDomainOutput { /* private fields */ }
Expand description
Container for response returned by
operation. UpgradeElasticsearchDomain
Implementations
sourceimpl UpgradeElasticsearchDomainOutput
impl UpgradeElasticsearchDomainOutput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
sourcepub fn target_version(&self) -> Option<&str>
pub fn target_version(&self) -> Option<&str>
The version of Elasticsearch that you intend to upgrade the domain to.
sourcepub fn perform_check_only(&self) -> Option<bool>
pub fn perform_check_only(&self) -> Option<bool>
This flag, when set to True, indicates that an Upgrade Eligibility Check needs to be performed. This will not actually perform the Upgrade.
sourcepub fn change_progress_details(&self) -> Option<&ChangeProgressDetails>
pub fn change_progress_details(&self) -> Option<&ChangeProgressDetails>
Specifies change details of the domain configuration change.
sourceimpl UpgradeElasticsearchDomainOutput
impl UpgradeElasticsearchDomainOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpgradeElasticsearchDomainOutput
.
Trait Implementations
sourceimpl Clone for UpgradeElasticsearchDomainOutput
impl Clone for UpgradeElasticsearchDomainOutput
sourcefn clone(&self) -> UpgradeElasticsearchDomainOutput
fn clone(&self) -> UpgradeElasticsearchDomainOutput
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 PartialEq<UpgradeElasticsearchDomainOutput> for UpgradeElasticsearchDomainOutput
impl PartialEq<UpgradeElasticsearchDomainOutput> for UpgradeElasticsearchDomainOutput
sourcefn eq(&self, other: &UpgradeElasticsearchDomainOutput) -> bool
fn eq(&self, other: &UpgradeElasticsearchDomainOutput) -> bool
impl StructuralPartialEq for UpgradeElasticsearchDomainOutput
Auto Trait Implementations
impl RefUnwindSafe for UpgradeElasticsearchDomainOutput
impl Send for UpgradeElasticsearchDomainOutput
impl Sync for UpgradeElasticsearchDomainOutput
impl Unpin for UpgradeElasticsearchDomainOutput
impl UnwindSafe for UpgradeElasticsearchDomainOutput
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