Struct rusoto_rds::ReservedDBInstancesOffering[][src]

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

The currency code for the reserved DB instance offering.

The DB instance class for the reserved DB instance.

The duration of the offering in seconds.

The fixed price charged for this offering.

Indicates if the offering applies to Multi-AZ deployments.

The offering type.

The database engine used by the offering.

The recurring price charged to run this reserved DB instance.

The offering identifier.

The hourly price charged for this offering.

Trait Implementations

impl Default for ReservedDBInstancesOffering
[src]

Returns the "default value" for a type. Read more

impl Debug for ReservedDBInstancesOffering
[src]

Formats the value using the given formatter. Read more

impl Clone for ReservedDBInstancesOffering
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReservedDBInstancesOffering
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations