[][src]Struct rusoto_es::ReservedElasticsearchInstanceOffering

pub struct ReservedElasticsearchInstanceOffering {
    pub currency_code: Option<String>,
    pub duration: Option<i64>,
    pub elasticsearch_instance_type: Option<String>,
    pub fixed_price: Option<f64>,
    pub payment_option: Option<String>,
    pub recurring_charges: Option<Vec<RecurringCharge>>,
    pub reserved_elasticsearch_instance_offering_id: Option<String>,
    pub usage_price: Option<f64>,
}

Details of a reserved Elasticsearch instance offering.

Fields

currency_code: Option<String>

The currency code for the reserved Elasticsearch instance offering.

duration: Option<i64>

The duration, in seconds, for which the offering will reserve the Elasticsearch instance.

elasticsearch_instance_type: Option<String>

The Elasticsearch instance type offered by the reserved instance offering.

fixed_price: Option<f64>

The upfront fixed charge you will pay to purchase the specific reserved Elasticsearch instance offering.

payment_option: Option<String>

Payment option for the reserved Elasticsearch instance offering

recurring_charges: Option<Vec<RecurringCharge>>

The charge to your account regardless of whether you are creating any domains using the instance offering.

reserved_elasticsearch_instance_offering_id: Option<String>

The Elasticsearch reserved instance offering identifier.

usage_price: Option<f64>

The rate you are charged for each hour the domain that is using the offering is running.

Trait Implementations

impl Clone for ReservedElasticsearchInstanceOffering[src]

impl Debug for ReservedElasticsearchInstanceOffering[src]

impl Default for ReservedElasticsearchInstanceOffering[src]

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

impl PartialEq<ReservedElasticsearchInstanceOffering> for ReservedElasticsearchInstanceOffering[src]

impl StructuralPartialEq for ReservedElasticsearchInstanceOffering[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.