#[non_exhaustive]pub struct RecommendationSummary { /* private fields */ }
Expand description
A summary of a recommendation.
Implementations§
source§impl 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.
source§impl RecommendationSummary
impl RecommendationSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecommendationSummary
.
Trait Implementations§
source§impl Clone for RecommendationSummary
impl Clone for RecommendationSummary
source§fn clone(&self) -> RecommendationSummary
fn clone(&self) -> RecommendationSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RecommendationSummary
impl Debug for RecommendationSummary
source§impl PartialEq<RecommendationSummary> for RecommendationSummary
impl PartialEq<RecommendationSummary> for RecommendationSummary
source§fn eq(&self, other: &RecommendationSummary) -> bool
fn eq(&self, other: &RecommendationSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.