#[non_exhaustive]pub struct LambdaFunctionMemoryRecommendationOption {
pub rank: i32,
pub memory_size: i32,
pub projected_utilization_metrics: Option<Vec<LambdaFunctionMemoryProjectedMetric>>,
pub savings_opportunity: Option<SavingsOpportunity>,
pub savings_opportunity_after_discounts: Option<LambdaSavingsOpportunityAfterDiscounts>,
}
Expand description
Describes a recommendation option for an Lambda function.
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.rank: i32
The rank of the function recommendation option.
The top recommendation option is ranked as 1
.
memory_size: i32
The memory size, in MB, of the function recommendation option.
projected_utilization_metrics: Option<Vec<LambdaFunctionMemoryProjectedMetric>>
An array of objects that describe the projected utilization metrics of the function recommendation option.
savings_opportunity: 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.
savings_opportunity_after_discounts: Option<LambdaSavingsOpportunityAfterDiscounts>
An object that describes the savings opportunity for the Lambda recommendation option which includes Saving Plans discounts. Savings opportunity includes the estimated monthly savings and percentage.
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
) -> &[LambdaFunctionMemoryProjectedMetric]
pub fn projected_utilization_metrics( &self ) -> &[LambdaFunctionMemoryProjectedMetric]
An array of objects that describe the projected utilization metrics of the function recommendation option.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .projected_utilization_metrics.is_none()
.
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.
sourcepub fn savings_opportunity_after_discounts(
&self
) -> Option<&LambdaSavingsOpportunityAfterDiscounts>
pub fn savings_opportunity_after_discounts( &self ) -> Option<&LambdaSavingsOpportunityAfterDiscounts>
An object that describes the savings opportunity for the Lambda recommendation option which includes Saving Plans discounts. Savings opportunity includes the estimated monthly savings 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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for LambdaFunctionMemoryRecommendationOption
impl PartialEq for LambdaFunctionMemoryRecommendationOption
source§fn eq(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
fn eq(&self, other: &LambdaFunctionMemoryRecommendationOption) -> bool
self
and other
values to be equal, and is used
by ==
.