#[non_exhaustive]pub struct UpgradeDomainOutputBuilder { /* private fields */ }Expand description
A builder for UpgradeDomainOutput.
Implementations§
source§impl UpgradeDomainOutputBuilder
impl UpgradeDomainOutputBuilder
sourcepub fn upgrade_id(self, input: impl Into<String>) -> Self
pub fn upgrade_id(self, input: impl Into<String>) -> Self
The unique identifier of the domain upgrade.
sourcepub fn set_upgrade_id(self, input: Option<String>) -> Self
pub fn set_upgrade_id(self, input: Option<String>) -> Self
The unique identifier of the domain upgrade.
sourcepub fn get_upgrade_id(&self) -> &Option<String>
pub fn get_upgrade_id(&self) -> &Option<String>
The unique identifier of the domain upgrade.
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
The name of the domain that was upgraded.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The name of the domain that was upgraded.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
The name of the domain that was upgraded.
sourcepub fn target_version(self, input: impl Into<String>) -> Self
pub fn target_version(self, input: impl Into<String>) -> Self
OpenSearch or Elasticsearch version that the domain was upgraded to.
sourcepub fn set_target_version(self, input: Option<String>) -> Self
pub fn set_target_version(self, input: Option<String>) -> Self
OpenSearch or Elasticsearch version that the domain was upgraded to.
sourcepub fn get_target_version(&self) -> &Option<String>
pub fn get_target_version(&self) -> &Option<String>
OpenSearch or Elasticsearch version that the domain was upgraded to.
sourcepub fn perform_check_only(self, input: bool) -> Self
pub fn perform_check_only(self, input: bool) -> Self
When true, indicates that an upgrade eligibility check was performed.
sourcepub fn set_perform_check_only(self, input: Option<bool>) -> Self
pub fn set_perform_check_only(self, input: Option<bool>) -> Self
When true, indicates that an upgrade eligibility check was performed.
sourcepub fn get_perform_check_only(&self) -> &Option<bool>
pub fn get_perform_check_only(&self) -> &Option<bool>
When true, indicates that an upgrade eligibility check was performed.
sourcepub fn advanced_options(
self,
k: impl Into<String>,
v: impl Into<String>,
) -> Self
pub fn advanced_options( self, k: impl Into<String>, v: impl Into<String>, ) -> Self
Adds a key-value pair to advanced_options.
To override the contents of this collection use set_advanced_options.
The advanced options configuration for the domain.
sourcepub fn set_advanced_options(
self,
input: Option<HashMap<String, String>>,
) -> Self
pub fn set_advanced_options( self, input: Option<HashMap<String, String>>, ) -> Self
The advanced options configuration for the domain.
sourcepub fn get_advanced_options(&self) -> &Option<HashMap<String, String>>
pub fn get_advanced_options(&self) -> &Option<HashMap<String, String>>
The advanced options configuration for the domain.
sourcepub fn change_progress_details(self, input: ChangeProgressDetails) -> Self
pub fn change_progress_details(self, input: ChangeProgressDetails) -> Self
Container for information about a configuration change happening on a domain.
sourcepub fn set_change_progress_details(
self,
input: Option<ChangeProgressDetails>,
) -> Self
pub fn set_change_progress_details( self, input: Option<ChangeProgressDetails>, ) -> Self
Container for information about a configuration change happening on a domain.
sourcepub fn get_change_progress_details(&self) -> &Option<ChangeProgressDetails>
pub fn get_change_progress_details(&self) -> &Option<ChangeProgressDetails>
Container for information about a configuration change happening on a domain.
sourcepub fn build(self) -> UpgradeDomainOutput
pub fn build(self) -> UpgradeDomainOutput
Consumes the builder and constructs a UpgradeDomainOutput.
Trait Implementations§
source§impl Clone for UpgradeDomainOutputBuilder
impl Clone for UpgradeDomainOutputBuilder
source§fn clone(&self) -> UpgradeDomainOutputBuilder
fn clone(&self) -> UpgradeDomainOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpgradeDomainOutputBuilder
impl Debug for UpgradeDomainOutputBuilder
source§impl Default for UpgradeDomainOutputBuilder
impl Default for UpgradeDomainOutputBuilder
source§fn default() -> UpgradeDomainOutputBuilder
fn default() -> UpgradeDomainOutputBuilder
source§impl PartialEq for UpgradeDomainOutputBuilder
impl PartialEq for UpgradeDomainOutputBuilder
source§fn eq(&self, other: &UpgradeDomainOutputBuilder) -> bool
fn eq(&self, other: &UpgradeDomainOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpgradeDomainOutputBuilder
Auto Trait Implementations§
impl Freeze for UpgradeDomainOutputBuilder
impl RefUnwindSafe for UpgradeDomainOutputBuilder
impl Send for UpgradeDomainOutputBuilder
impl Sync for UpgradeDomainOutputBuilder
impl Unpin for UpgradeDomainOutputBuilder
impl UnwindSafe for UpgradeDomainOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more