#[non_exhaustive]pub struct LambdaFunctionMemoryRecommendationOption { /* private fields */ }
Expand description
Describes a recommendation option for an Lambda function.
Implementations§
source§impl 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.
source§impl LambdaFunctionMemoryRecommendationOption
impl LambdaFunctionMemoryRecommendationOption
sourcepub fn builder() -> LambdaFunctionMemoryRecommendationOptionBuilder
pub fn builder() -> LambdaFunctionMemoryRecommendationOptionBuilder
Creates a new builder-style object to manufacture LambdaFunctionMemoryRecommendationOption
.
Trait Implementations§
source§impl Clone for LambdaFunctionMemoryRecommendationOption
impl Clone for LambdaFunctionMemoryRecommendationOption
source§fn clone(&self) -> LambdaFunctionMemoryRecommendationOption
fn clone(&self) -> LambdaFunctionMemoryRecommendationOption
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 PartialEq<LambdaFunctionMemoryRecommendationOption> for LambdaFunctionMemoryRecommendationOption
impl PartialEq<LambdaFunctionMemoryRecommendationOption> for LambdaFunctionMemoryRecommendationOption
source§fn 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 ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more