[][src]Struct rusoto_es::ServiceSoftwareOptions

pub struct ServiceSoftwareOptions {
    pub automated_update_date: Option<f64>,
    pub cancellable: Option<bool>,
    pub current_version: Option<String>,
    pub description: Option<String>,
    pub new_version: Option<String>,
    pub optional_deployment: Option<bool>,
    pub update_available: Option<bool>,
    pub update_status: Option<String>,
}

The current options of an Elasticsearch domain service software options.

Fields

automated_update_date: Option<f64>

Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

cancellable: Option<bool>

True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.

current_version: Option<String>

The current service software version that is present on the domain.

description: Option<String>

The description of the UpdateStatus.

new_version: Option<String>

The new service software version if one is available.

optional_deployment: Option<bool>

True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate.

update_available: Option<bool>

True if you are able to update you service software version. False if you are not able to update your service software version.

update_status: Option<String>

The status of your service software update. This field can take the following values: ELIGIBLE, PENDING_UPDATE, IN_PROGRESS, COMPLETED, and NOT_ELIGIBLE.

Trait Implementations

impl Clone for ServiceSoftwareOptions[src]

impl Debug for ServiceSoftwareOptions[src]

impl Default for ServiceSoftwareOptions[src]

impl<'de> Deserialize<'de> for ServiceSoftwareOptions[src]

impl PartialEq<ServiceSoftwareOptions> for ServiceSoftwareOptions[src]

impl StructuralPartialEq for ServiceSoftwareOptions[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.