#[non_exhaustive]pub struct RecommendationSummary { /* private fields */ }
Expand description
A summary of a recommendation.
Implementations
sourceimpl RecommendationSummary
impl RecommendationSummary
sourcepub fn summaries(&self) -> Option<&[Summary]>
pub fn summaries(&self) -> Option<&[Summary]>
An array of objects that describe a recommendation summary.
sourcepub fn recommendation_resource_type(&self) -> Option<&RecommendationSourceType>
pub fn recommendation_resource_type(&self) -> Option<&RecommendationSourceType>
The resource type that the recommendation summary applies to.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID of the recommendation summary.
sourcepub fn savings_opportunity(&self) -> Option<&SavingsOpportunity>
pub fn savings_opportunity(&self) -> Option<&SavingsOpportunity>
An object that describes the savings opportunity for a given resource type. Savings opportunity includes the estimated monthly savings amount and percentage.
sourcepub fn current_performance_risk_ratings(
&self
) -> Option<&CurrentPerformanceRiskRatings>
pub fn current_performance_risk_ratings(
&self
) -> Option<&CurrentPerformanceRiskRatings>
An object that describes the performance risk ratings for a given resource type.
sourceimpl RecommendationSummary
impl RecommendationSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecommendationSummary
.
Trait Implementations
sourceimpl Clone for RecommendationSummary
impl Clone for RecommendationSummary
sourcefn clone(&self) -> RecommendationSummary
fn clone(&self) -> RecommendationSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RecommendationSummary
impl Debug for RecommendationSummary
sourceimpl PartialEq<RecommendationSummary> for RecommendationSummary
impl PartialEq<RecommendationSummary> for RecommendationSummary
sourcefn eq(&self, other: &RecommendationSummary) -> bool
fn eq(&self, other: &RecommendationSummary) -> bool
impl StructuralPartialEq for RecommendationSummary
Auto Trait Implementations
impl RefUnwindSafe for RecommendationSummary
impl Send for RecommendationSummary
impl Sync for RecommendationSummary
impl Unpin for RecommendationSummary
impl UnwindSafe for RecommendationSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more