#[non_exhaustive]pub struct LambdaFunctionMemoryRecommendationOption { /* private fields */ }
Expand description
Describes a recommendation option for an Lambda function.
Implementations
sourceimpl LambdaFunctionMemoryRecommendationOption
impl LambdaFunctionMemoryRecommendationOption
sourcepub fn rank(&self) -> i32
pub fn rank(&self) -> i32
The rank of the function recommendation option.
The top recommendation option is ranked as 1
.
sourcepub fn memory_size(&self) -> i32
pub fn memory_size(&self) -> i32
The memory size, in MB, of the function recommendation option.
sourcepub fn projected_utilization_metrics(
&self
) -> Option<&[LambdaFunctionMemoryProjectedMetric]>
pub fn projected_utilization_metrics(
&self
) -> Option<&[LambdaFunctionMemoryProjectedMetric]>
An array of objects that describe the projected utilization metrics of the function recommendation option.
sourcepub fn savings_opportunity(&self) -> Option<&SavingsOpportunity>
pub fn savings_opportunity(&self) -> Option<&SavingsOpportunity>
An object that describes the savings opportunity for the Lambda function recommendation option. Savings opportunity includes the estimated monthly savings amount and percentage.
sourceimpl LambdaFunctionMemoryRecommendationOption
impl LambdaFunctionMemoryRecommendationOption
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LambdaFunctionMemoryRecommendationOption
.
Trait Implementations
sourceimpl Clone for LambdaFunctionMemoryRecommendationOption
impl Clone for LambdaFunctionMemoryRecommendationOption
sourcefn clone(&self) -> LambdaFunctionMemoryRecommendationOption
fn clone(&self) -> LambdaFunctionMemoryRecommendationOption
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 PartialEq<LambdaFunctionMemoryRecommendationOption> for LambdaFunctionMemoryRecommendationOption
impl PartialEq<LambdaFunctionMemoryRecommendationOption> for LambdaFunctionMemoryRecommendationOption
sourcefn eq(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
fn eq(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
fn ne(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
This method tests for !=
.
impl StructuralPartialEq for LambdaFunctionMemoryRecommendationOption
Auto Trait Implementations
impl RefUnwindSafe for LambdaFunctionMemoryRecommendationOption
impl Send for LambdaFunctionMemoryRecommendationOption
impl Sync for LambdaFunctionMemoryRecommendationOption
impl Unpin for LambdaFunctionMemoryRecommendationOption
impl UnwindSafe for LambdaFunctionMemoryRecommendationOption
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
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> 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