Struct aws_sdk_computeoptimizer::model::SavingsOpportunity
source · [−]#[non_exhaustive]pub struct SavingsOpportunity {
pub savings_opportunity_percentage: f64,
pub estimated_monthly_savings: Option<EstimatedMonthlySavings>,
}
Expand description
Describes the savings opportunity for recommendations of a given resource type or for the recommendation option of an individual resource.
Savings opportunity represents the estimated monthly savings you can achieve by implementing a given Compute Optimizer recommendation.
Savings opportunity data requires that you opt in to Cost Explorer, as well as activate Receive Amazon EC2 resource recommendations in the Cost Explorer preferences page. That creates a connection between Cost Explorer and Compute Optimizer. With this connection, Cost Explorer generates savings estimates considering the price of existing resources, the price of recommended resources, and historical usage data. Estimated monthly savings reflects the projected dollar savings associated with each of the recommendations generated. For more information, see Enabling Cost Explorer and Optimizing your cost with Rightsizing Recommendations in the Cost Management User Guide.
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.savings_opportunity_percentage: f64
The estimated monthly savings possible as a percentage of monthly cost by adopting Compute Optimizer recommendations for a given resource.
estimated_monthly_savings: Option<EstimatedMonthlySavings>
An object that describes the estimated monthly savings amount possible, based on On-Demand instance pricing, by adopting Compute Optimizer recommendations for a given resource.
Implementations
sourceimpl SavingsOpportunity
impl SavingsOpportunity
sourcepub fn savings_opportunity_percentage(&self) -> f64
pub fn savings_opportunity_percentage(&self) -> f64
The estimated monthly savings possible as a percentage of monthly cost by adopting Compute Optimizer recommendations for a given resource.
sourcepub fn estimated_monthly_savings(&self) -> Option<&EstimatedMonthlySavings>
pub fn estimated_monthly_savings(&self) -> Option<&EstimatedMonthlySavings>
An object that describes the estimated monthly savings amount possible, based on On-Demand instance pricing, by adopting Compute Optimizer recommendations for a given resource.
sourceimpl SavingsOpportunity
impl SavingsOpportunity
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SavingsOpportunity
Trait Implementations
sourceimpl Clone for SavingsOpportunity
impl Clone for SavingsOpportunity
sourcefn clone(&self) -> SavingsOpportunity
fn clone(&self) -> SavingsOpportunity
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 more
sourceimpl Debug for SavingsOpportunity
impl Debug for SavingsOpportunity
sourceimpl PartialEq<SavingsOpportunity> for SavingsOpportunity
impl PartialEq<SavingsOpportunity> for SavingsOpportunity
sourcefn eq(&self, other: &SavingsOpportunity) -> bool
fn eq(&self, other: &SavingsOpportunity) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SavingsOpportunity) -> bool
fn ne(&self, other: &SavingsOpportunity) -> bool
This method tests for !=
.
impl StructuralPartialEq for SavingsOpportunity
Auto Trait Implementations
impl RefUnwindSafe for SavingsOpportunity
impl Send for SavingsOpportunity
impl Sync for SavingsOpportunity
impl Unpin for SavingsOpportunity
impl UnwindSafe for SavingsOpportunity
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more