#[non_exhaustive]pub struct VolumeRecommendationOption {
pub configuration: Option<VolumeConfiguration>,
pub performance_risk: f64,
pub rank: i32,
pub savings_opportunity: Option<SavingsOpportunity>,
pub savings_opportunity_after_discounts: Option<EbsSavingsOpportunityAfterDiscounts>,
}
Expand description
Describes a recommendation option for an Amazon Elastic Block Store (Amazon EBS) instance.
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.configuration: Option<VolumeConfiguration>
An array of objects that describe a volume configuration.
performance_risk: f64
The performance risk of the volume recommendation option.
Performance risk is the likelihood of the recommended volume type meeting the performance requirement of your workload.
The value ranges from 0
- 4
, with 0
meaning that the recommended resource is predicted to always provide enough hardware capability. The higher the performance risk is, the more likely you should validate whether the recommendation will meet the performance requirements of your workload before migrating your resource.
rank: i32
The rank of the volume recommendation option.
The top recommendation option is ranked as 1
.
savings_opportunity: Option<SavingsOpportunity>
An object that describes the savings opportunity for the EBS volume recommendation option. Savings opportunity includes the estimated monthly savings amount and percentage.
savings_opportunity_after_discounts: Option<EbsSavingsOpportunityAfterDiscounts>
An object that describes the savings opportunity for the Amazon EBS volume recommendation option with specific discounts. Savings opportunity includes the estimated monthly savings and percentage.
Implementations§
source§impl VolumeRecommendationOption
impl VolumeRecommendationOption
sourcepub fn configuration(&self) -> Option<&VolumeConfiguration>
pub fn configuration(&self) -> Option<&VolumeConfiguration>
An array of objects that describe a volume configuration.
sourcepub fn performance_risk(&self) -> f64
pub fn performance_risk(&self) -> f64
The performance risk of the volume recommendation option.
Performance risk is the likelihood of the recommended volume type meeting the performance requirement of your workload.
The value ranges from 0
- 4
, with 0
meaning that the recommended resource is predicted to always provide enough hardware capability. The higher the performance risk is, the more likely you should validate whether the recommendation will meet the performance requirements of your workload before migrating your resource.
sourcepub fn rank(&self) -> i32
pub fn rank(&self) -> i32
The rank of the volume recommendation option.
The top recommendation option is ranked as 1
.
sourcepub fn savings_opportunity(&self) -> Option<&SavingsOpportunity>
pub fn savings_opportunity(&self) -> Option<&SavingsOpportunity>
An object that describes the savings opportunity for the EBS volume recommendation option. Savings opportunity includes the estimated monthly savings amount and percentage.
sourcepub fn savings_opportunity_after_discounts(
&self
) -> Option<&EbsSavingsOpportunityAfterDiscounts>
pub fn savings_opportunity_after_discounts( &self ) -> Option<&EbsSavingsOpportunityAfterDiscounts>
An object that describes the savings opportunity for the Amazon EBS volume recommendation option with specific discounts. Savings opportunity includes the estimated monthly savings and percentage.
source§impl VolumeRecommendationOption
impl VolumeRecommendationOption
sourcepub fn builder() -> VolumeRecommendationOptionBuilder
pub fn builder() -> VolumeRecommendationOptionBuilder
Creates a new builder-style object to manufacture VolumeRecommendationOption
.
Trait Implementations§
source§impl Clone for VolumeRecommendationOption
impl Clone for VolumeRecommendationOption
source§fn clone(&self) -> VolumeRecommendationOption
fn clone(&self) -> VolumeRecommendationOption
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VolumeRecommendationOption
impl Debug for VolumeRecommendationOption
source§impl PartialEq for VolumeRecommendationOption
impl PartialEq for VolumeRecommendationOption
source§fn eq(&self, other: &VolumeRecommendationOption) -> bool
fn eq(&self, other: &VolumeRecommendationOption) -> bool
self
and other
values to be equal, and is used
by ==
.