[][src]Struct rusoto_compute_optimizer::VolumeRecommendationOption

pub struct VolumeRecommendationOption {
    pub configuration: Option<VolumeConfiguration>,
    pub performance_risk: Option<f64>,
    pub rank: Option<i64>,
}

Describes a recommendation option for an Amazon Elastic Block Store (Amazon EBS) instance.

Fields

configuration: Option<VolumeConfiguration>

An array of objects that describe a volume configuration.

performance_risk: Option<f64>

The performance risk of the volume recommendation option.

Performance risk is the likelihood of the recommended volume type not meeting the performance requirement of your workload.

The lowest performance risk is categorized as 0, and the highest as 5.

rank: Option<i64>

The rank of the volume recommendation option.

The top recommendation option is ranked as 1.

Trait Implementations

impl Clone for VolumeRecommendationOption[src]

impl Debug for VolumeRecommendationOption[src]

impl Default for VolumeRecommendationOption[src]

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

impl PartialEq<VolumeRecommendationOption> for VolumeRecommendationOption[src]

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