#[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() -> Builder
pub fn builder() -> Builder
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 ==
.