[][src]Struct rusoto_es::UpgradeElasticsearchDomainRequest

pub struct UpgradeElasticsearchDomainRequest {
    pub domain_name: String,
    pub perform_check_only: Option<bool>,
    pub target_version: String,
}

Container for request parameters to UpgradeElasticsearchDomain operation.

Fields

domain_name: Stringperform_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.

target_version: String

The version of Elasticsearch that you intend to upgrade the domain to.

Trait Implementations

impl Clone for UpgradeElasticsearchDomainRequest[src]

impl Debug for UpgradeElasticsearchDomainRequest[src]

impl Default for UpgradeElasticsearchDomainRequest[src]

impl PartialEq<UpgradeElasticsearchDomainRequest> for UpgradeElasticsearchDomainRequest[src]

impl Serialize for UpgradeElasticsearchDomainRequest[src]

impl StructuralPartialEq for UpgradeElasticsearchDomainRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.