[][src]Struct rusoto_compute_optimizer::VolumeRecommendation

pub struct VolumeRecommendation {
    pub account_id: Option<String>,
    pub current_configuration: Option<VolumeConfiguration>,
    pub finding: Option<String>,
    pub last_refresh_timestamp: Option<f64>,
    pub look_back_period_in_days: Option<f64>,
    pub utilization_metrics: Option<Vec<EBSUtilizationMetric>>,
    pub volume_arn: Option<String>,
    pub volume_recommendation_options: Option<Vec<VolumeRecommendationOption>>,
}

Describes an Amazon Elastic Block Store (Amazon EBS) volume recommendation.

Fields

account_id: Option<String>

The AWS account ID of the volume.

current_configuration: Option<VolumeConfiguration>

An array of objects that describe the current configuration of the volume.

finding: Option<String>

The finding classification for the volume.

Findings for volumes include:

  • NotOptimized —A volume is considered not optimized when AWS Compute Optimizer identifies a recommendation that can provide better performance for your workload.

  • Optimized —An volume is considered optimized when Compute Optimizer determines that the volume is correctly provisioned to run your workload based on the chosen volume type. For optimized resources, Compute Optimizer might recommend a new generation volume type.

last_refresh_timestamp: Option<f64>

The time stamp of when the volume recommendation was last refreshed.

look_back_period_in_days: Option<f64>

The number of days for which utilization metrics were analyzed for the volume.

utilization_metrics: Option<Vec<EBSUtilizationMetric>>

An array of objects that describe the utilization metrics of the volume.

volume_arn: Option<String>

The Amazon Resource Name (ARN) of the current volume.

volume_recommendation_options: Option<Vec<VolumeRecommendationOption>>

An array of objects that describe the recommendation options for the volume.

Trait Implementations

impl Clone for VolumeRecommendation[src]

impl Debug for VolumeRecommendation[src]

impl Default for VolumeRecommendation[src]

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

impl PartialEq<VolumeRecommendation> for VolumeRecommendation[src]

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