[][src]Struct rusoto_es::ReservedElasticsearchInstance

pub struct ReservedElasticsearchInstance {
    pub currency_code: Option<String>,
    pub duration: Option<i64>,
    pub elasticsearch_instance_count: 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 reservation_name: Option<String>,
    pub reserved_elasticsearch_instance_id: Option<String>,
    pub reserved_elasticsearch_instance_offering_id: Option<String>,
    pub start_time: Option<f64>,
    pub state: Option<String>,
    pub usage_price: Option<f64>,
}

Details of a reserved Elasticsearch instance.

Fields

currency_code: Option<String>

The currency code for the reserved Elasticsearch instance offering.

duration: Option<i64>

The duration, in seconds, for which the Elasticsearch instance is reserved.

elasticsearch_instance_count: Option<i64>

The number of Elasticsearch instances that have been reserved.

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 paid to purchase the specific reserved Elasticsearch instance offering.

payment_option: Option<String>

The payment option as defined in 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.

reservation_name: Option<String>

The customer-specified identifier to track this reservation.

reserved_elasticsearch_instance_id: Option<String>

The unique identifier for the reservation.

reserved_elasticsearch_instance_offering_id: Option<String>

The offering identifier.

start_time: Option<f64>

The time the reservation started.

state: Option<String>

The state of the reserved Elasticsearch instance.

usage_price: Option<f64>

The rate you are charged for each hour for the domain that is using this reserved instance.

Trait Implementations

impl Clone for ReservedElasticsearchInstance[src]

impl Debug for ReservedElasticsearchInstance[src]

impl Default for ReservedElasticsearchInstance[src]

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

impl PartialEq<ReservedElasticsearchInstance> for ReservedElasticsearchInstance[src]

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