#[non_exhaustive]pub struct UpgradeDomainOutput { /* private fields */ }Expand description
Container for the response returned by UpgradeDomain operation.
Implementations§
source§impl UpgradeDomainOutput
impl UpgradeDomainOutput
sourcepub fn upgrade_id(&self) -> Option<&str>
pub fn upgrade_id(&self) -> Option<&str>
The unique identifier of the domain upgrade.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The name of the domain that was upgraded.
sourcepub fn target_version(&self) -> Option<&str>
pub fn target_version(&self) -> Option<&str>
OpenSearch or Elasticsearch version that the domain was upgraded to.
sourcepub fn perform_check_only(&self) -> Option<bool>
pub fn perform_check_only(&self) -> Option<bool>
When true, indicates that an upgrade eligibility check was performed.
sourcepub fn advanced_options(&self) -> Option<&HashMap<String, String>>
pub fn advanced_options(&self) -> Option<&HashMap<String, String>>
The advanced options configuration for the domain.
sourcepub fn change_progress_details(&self) -> Option<&ChangeProgressDetails>
pub fn change_progress_details(&self) -> Option<&ChangeProgressDetails>
Container for information about a configuration change happening on a domain.
source§impl UpgradeDomainOutput
impl UpgradeDomainOutput
sourcepub fn builder() -> UpgradeDomainOutputBuilder
pub fn builder() -> UpgradeDomainOutputBuilder
Creates a new builder-style object to manufacture UpgradeDomainOutput.
Trait Implementations§
source§impl Clone for UpgradeDomainOutput
impl Clone for UpgradeDomainOutput
source§fn clone(&self) -> UpgradeDomainOutput
fn clone(&self) -> UpgradeDomainOutput
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 UpgradeDomainOutput
impl Debug for UpgradeDomainOutput
source§impl PartialEq<UpgradeDomainOutput> for UpgradeDomainOutput
impl PartialEq<UpgradeDomainOutput> for UpgradeDomainOutput
source§fn eq(&self, other: &UpgradeDomainOutput) -> bool
fn eq(&self, other: &UpgradeDomainOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for UpgradeDomainOutput
impl RequestId for UpgradeDomainOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for UpgradeDomainOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpgradeDomainOutput
impl Send for UpgradeDomainOutput
impl Sync for UpgradeDomainOutput
impl Unpin for UpgradeDomainOutput
impl UnwindSafe for UpgradeDomainOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more