#[non_exhaustive]pub struct VolumeRecommendation {
pub volume_arn: Option<String>,
pub account_id: Option<String>,
pub current_configuration: Option<VolumeConfiguration>,
pub finding: Option<EbsFinding>,
pub utilization_metrics: Option<Vec<EbsUtilizationMetric>>,
pub look_back_period_in_days: f64,
pub volume_recommendation_options: Option<Vec<VolumeRecommendationOption>>,
pub last_refresh_timestamp: Option<DateTime>,
pub current_performance_risk: Option<CurrentPerformanceRisk>,
pub tags: Option<Vec<Tag>>,
pub effective_recommendation_preferences: Option<EbsEffectiveRecommendationPreferences>,
}
Expand description
Describes an Amazon Elastic Block Store (Amazon EBS) volume recommendation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.volume_arn: Option<String>
The Amazon Resource Name (ARN) of the current volume.
account_id: Option<String>
The Amazon Web Services account ID of the volume.
current_configuration: Option<VolumeConfiguration>
An array of objects that describe the current configuration of the volume.
finding: 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.
utilization_metrics: Option<Vec<EbsUtilizationMetric>>
An array of objects that describe the utilization metrics of the volume.
look_back_period_in_days: f64
The number of days for which utilization metrics were analyzed for the volume.
volume_recommendation_options: Option<Vec<VolumeRecommendationOption>>
An array of objects that describe the recommendation options for the volume.
last_refresh_timestamp: Option<DateTime>
The timestamp of when the volume recommendation was last generated.
current_performance_risk: 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.
A list of tags assigned to your Amazon EBS volume recommendations.
effective_recommendation_preferences: Option<EbsEffectiveRecommendationPreferences>
Describes the effective recommendation preferences for Amazon EBS volume.
Implementations§
source§impl 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) -> &[EbsUtilizationMetric]
pub fn utilization_metrics(&self) -> &[EbsUtilizationMetric]
An array of objects that describe the utilization metrics of the volume.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .utilization_metrics.is_none()
.
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) -> &[VolumeRecommendationOption]
pub fn volume_recommendation_options(&self) -> &[VolumeRecommendationOption]
An array of objects that describe the recommendation options for the volume.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .volume_recommendation_options.is_none()
.
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.
A list of tags assigned to your Amazon EBS volume recommendations.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
sourcepub fn effective_recommendation_preferences(
&self
) -> Option<&EbsEffectiveRecommendationPreferences>
pub fn effective_recommendation_preferences( &self ) -> Option<&EbsEffectiveRecommendationPreferences>
Describes the effective recommendation preferences for Amazon EBS volume.
source§impl VolumeRecommendation
impl VolumeRecommendation
sourcepub fn builder() -> VolumeRecommendationBuilder
pub fn builder() -> VolumeRecommendationBuilder
Creates a new builder-style object to manufacture VolumeRecommendation
.
Trait Implementations§
source§impl Clone for VolumeRecommendation
impl Clone for VolumeRecommendation
source§fn clone(&self) -> VolumeRecommendation
fn clone(&self) -> VolumeRecommendation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VolumeRecommendation
impl Debug for VolumeRecommendation
source§impl PartialEq for VolumeRecommendation
impl PartialEq for VolumeRecommendation
source§fn eq(&self, other: &VolumeRecommendation) -> bool
fn eq(&self, other: &VolumeRecommendation) -> bool
self
and other
values to be equal, and is used
by ==
.