#[non_exhaustive]pub struct VolumeRecommendation { /* private fields */ }
Expand description
Describes an Amazon Elastic Block Store (Amazon EBS) volume recommendation.
Implementations
sourceimpl VolumeRecommendation
impl VolumeRecommendation
sourcepub fn volume_arn(&self) -> Option<&str>
pub fn volume_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the current volume.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID of the volume.
sourcepub fn current_configuration(&self) -> Option<&VolumeConfiguration>
pub fn current_configuration(&self) -> Option<&VolumeConfiguration>
An array of objects that describe the current configuration of the volume.
sourcepub fn finding(&self) -> Option<&EbsFinding>
pub fn finding(&self) -> Option<&EbsFinding>
The finding classification of the volume.
Findings for volumes include:
-
NotOptimized
—A volume is considered not optimized when 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.
sourcepub fn utilization_metrics(&self) -> Option<&[EbsUtilizationMetric]>
pub fn utilization_metrics(&self) -> Option<&[EbsUtilizationMetric]>
An array of objects that describe the utilization metrics of the volume.
sourcepub fn look_back_period_in_days(&self) -> f64
pub fn look_back_period_in_days(&self) -> f64
The number of days for which utilization metrics were analyzed for the volume.
sourcepub fn volume_recommendation_options(
&self
) -> Option<&[VolumeRecommendationOption]>
pub fn volume_recommendation_options(
&self
) -> Option<&[VolumeRecommendationOption]>
An array of objects that describe the recommendation options for the volume.
sourcepub fn last_refresh_timestamp(&self) -> Option<&DateTime>
pub fn last_refresh_timestamp(&self) -> Option<&DateTime>
The timestamp of when the volume recommendation was last generated.
sourcepub fn current_performance_risk(&self) -> Option<&CurrentPerformanceRisk>
pub fn current_performance_risk(&self) -> Option<&CurrentPerformanceRisk>
The risk of the current EBS volume not meeting the performance needs of its workloads. The higher the risk, the more likely the current EBS volume doesn't have sufficient capacity.
sourceimpl VolumeRecommendation
impl VolumeRecommendation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VolumeRecommendation
.
Trait Implementations
sourceimpl Clone for VolumeRecommendation
impl Clone for VolumeRecommendation
sourcefn clone(&self) -> VolumeRecommendation
fn clone(&self) -> VolumeRecommendation
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more