Struct aws_sdk_elasticsearch::operation::upgrade_elasticsearch_domain::UpgradeElasticsearchDomainInput
source · #[non_exhaustive]pub struct UpgradeElasticsearchDomainInput {
pub domain_name: Option<String>,
pub target_version: Option<String>,
pub perform_check_only: Option<bool>,
}
Expand description
Container for request parameters to
operation.UpgradeElasticsearchDomain
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_name: 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).
target_version: Option<String>
The version of Elasticsearch that you intend to upgrade the domain to.
perform_check_only: 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.
Implementations§
source§impl UpgradeElasticsearchDomainInput
impl UpgradeElasticsearchDomainInput
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.
source§impl UpgradeElasticsearchDomainInput
impl UpgradeElasticsearchDomainInput
sourcepub fn builder() -> UpgradeElasticsearchDomainInputBuilder
pub fn builder() -> UpgradeElasticsearchDomainInputBuilder
Creates a new builder-style object to manufacture UpgradeElasticsearchDomainInput
.
Trait Implementations§
source§impl Clone for UpgradeElasticsearchDomainInput
impl Clone for UpgradeElasticsearchDomainInput
source§fn clone(&self) -> UpgradeElasticsearchDomainInput
fn clone(&self) -> UpgradeElasticsearchDomainInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpgradeElasticsearchDomainInput
impl PartialEq for UpgradeElasticsearchDomainInput
source§fn eq(&self, other: &UpgradeElasticsearchDomainInput) -> bool
fn eq(&self, other: &UpgradeElasticsearchDomainInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpgradeElasticsearchDomainInput
Auto Trait Implementations§
impl Freeze for UpgradeElasticsearchDomainInput
impl RefUnwindSafe for UpgradeElasticsearchDomainInput
impl Send for UpgradeElasticsearchDomainInput
impl Sync for UpgradeElasticsearchDomainInput
impl Unpin for UpgradeElasticsearchDomainInput
impl UnwindSafe for UpgradeElasticsearchDomainInput
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> 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