Struct aws_sdk_elasticsearch::operation::upgrade_elasticsearch_domain::builders::UpgradeElasticsearchDomainOutputBuilder
source · #[non_exhaustive]pub struct UpgradeElasticsearchDomainOutputBuilder { /* private fields */ }
Expand description
A builder for UpgradeElasticsearchDomainOutput
.
Implementations§
source§impl UpgradeElasticsearchDomainOutputBuilder
impl UpgradeElasticsearchDomainOutputBuilder
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
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 set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
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 get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
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, input: impl Into<String>) -> Self
pub fn target_version(self, input: impl Into<String>) -> Self
The version of Elasticsearch that you intend to upgrade the domain to.
sourcepub fn set_target_version(self, input: Option<String>) -> Self
pub fn set_target_version(self, input: Option<String>) -> Self
The version of Elasticsearch that you intend to upgrade the domain to.
sourcepub fn get_target_version(&self) -> &Option<String>
pub fn get_target_version(&self) -> &Option<String>
The version of Elasticsearch that you intend to upgrade the domain to.
sourcepub fn perform_check_only(self, input: bool) -> Self
pub fn perform_check_only(self, input: bool) -> Self
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 set_perform_check_only(self, input: Option<bool>) -> Self
pub fn set_perform_check_only(self, input: Option<bool>) -> Self
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 get_perform_check_only(&self) -> &Option<bool>
pub fn get_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, input: ChangeProgressDetails) -> Self
pub fn change_progress_details(self, input: ChangeProgressDetails) -> Self
Specifies change details of the domain configuration change.
sourcepub fn set_change_progress_details(
self,
input: Option<ChangeProgressDetails>,
) -> Self
pub fn set_change_progress_details( self, input: Option<ChangeProgressDetails>, ) -> Self
Specifies change details of the domain configuration change.
sourcepub fn get_change_progress_details(&self) -> &Option<ChangeProgressDetails>
pub fn get_change_progress_details(&self) -> &Option<ChangeProgressDetails>
Specifies change details of the domain configuration change.
sourcepub fn build(self) -> UpgradeElasticsearchDomainOutput
pub fn build(self) -> UpgradeElasticsearchDomainOutput
Consumes the builder and constructs a UpgradeElasticsearchDomainOutput
.
Trait Implementations§
source§impl Clone for UpgradeElasticsearchDomainOutputBuilder
impl Clone for UpgradeElasticsearchDomainOutputBuilder
source§fn clone(&self) -> UpgradeElasticsearchDomainOutputBuilder
fn clone(&self) -> UpgradeElasticsearchDomainOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpgradeElasticsearchDomainOutputBuilder
impl Default for UpgradeElasticsearchDomainOutputBuilder
source§fn default() -> UpgradeElasticsearchDomainOutputBuilder
fn default() -> UpgradeElasticsearchDomainOutputBuilder
source§impl PartialEq for UpgradeElasticsearchDomainOutputBuilder
impl PartialEq for UpgradeElasticsearchDomainOutputBuilder
source§fn eq(&self, other: &UpgradeElasticsearchDomainOutputBuilder) -> bool
fn eq(&self, other: &UpgradeElasticsearchDomainOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpgradeElasticsearchDomainOutputBuilder
Auto Trait Implementations§
impl Freeze for UpgradeElasticsearchDomainOutputBuilder
impl RefUnwindSafe for UpgradeElasticsearchDomainOutputBuilder
impl Send for UpgradeElasticsearchDomainOutputBuilder
impl Sync for UpgradeElasticsearchDomainOutputBuilder
impl Unpin for UpgradeElasticsearchDomainOutputBuilder
impl UnwindSafe for UpgradeElasticsearchDomainOutputBuilder
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