[][src]Struct rusoto_rds::ReservedDBInstancesOffering

pub struct ReservedDBInstancesOffering {
    pub currency_code: Option<String>,
    pub db_instance_class: Option<String>,
    pub duration: Option<i64>,
    pub fixed_price: Option<f64>,
    pub multi_az: Option<bool>,
    pub offering_type: Option<String>,
    pub product_description: Option<String>,
    pub recurring_charges: Option<Vec<RecurringCharge>>,
    pub reserved_db_instances_offering_id: Option<String>,
    pub usage_price: Option<f64>,
}

This data type is used as a response element in the DescribeReservedDBInstancesOfferings action.

Fields

currency_code: Option<String>

The currency code for the reserved DB instance offering.

db_instance_class: Option<String>

The DB instance class for the reserved DB instance.

duration: Option<i64>

The duration of the offering in seconds.

fixed_price: Option<f64>

The fixed price charged for this offering.

multi_az: Option<bool>

Indicates if the offering applies to Multi-AZ deployments.

offering_type: Option<String>

The offering type.

product_description: Option<String>

The database engine used by the offering.

recurring_charges: Option<Vec<RecurringCharge>>

The recurring price charged to run this reserved DB instance.

reserved_db_instances_offering_id: Option<String>

The offering identifier.

usage_price: Option<f64>

The hourly price charged for this offering.

Trait Implementations

impl Clone for ReservedDBInstancesOffering[src]

impl Debug for ReservedDBInstancesOffering[src]

impl Default for ReservedDBInstancesOffering[src]

impl PartialEq<ReservedDBInstancesOffering> for ReservedDBInstancesOffering[src]

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