#[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<UpgradeDomainOutputBuilder> for UpgradeDomainOutputBuilder
impl PartialEq<UpgradeDomainOutputBuilder> 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 ==
.