#[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 moresourceimpl PartialEq<LambdaFunctionMemoryRecommendationOption> for LambdaFunctionMemoryRecommendationOption
impl PartialEq<LambdaFunctionMemoryRecommendationOption> for LambdaFunctionMemoryRecommendationOption
sourcefn eq(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
fn eq(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
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 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