[][src]Struct rusoto_ce::RDSInstanceDetails

pub struct RDSInstanceDetails {
    pub current_generation: Option<bool>,
    pub database_edition: Option<String>,
    pub database_engine: Option<String>,
    pub deployment_option: Option<String>,
    pub family: Option<String>,
    pub instance_type: Option<String>,
    pub license_model: Option<String>,
    pub region: Option<String>,
    pub size_flex_eligible: Option<bool>,
}

Details about the Amazon RDS instances that AWS recommends that you purchase.

Fields

current_generation: Option<bool>

Whether the recommendation is for a current-generation instance.

database_edition: Option<String>

The database edition that the recommended reservation supports.

database_engine: Option<String>

The database engine that the recommended reservation supports.

deployment_option: Option<String>

Whether the recommendation is for a reservation in a single Availability Zone or a reservation with a backup in a second Availability Zone.

family: Option<String>

The instance family of the recommended reservation.

instance_type: Option<String>

The type of instance that AWS recommends.

license_model: Option<String>

The license model that the recommended reservation supports.

region: Option<String>

The AWS Region of the recommended reservation.

size_flex_eligible: Option<bool>

Whether the recommended reservation is size flexible.

Trait Implementations

impl Clone for RDSInstanceDetails[src]

impl Debug for RDSInstanceDetails[src]

impl Default for RDSInstanceDetails[src]

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

impl PartialEq<RDSInstanceDetails> for RDSInstanceDetails[src]

impl StructuralPartialEq for RDSInstanceDetails[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, 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> Sealed<T> for T where
    T: ?Sized

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.