Struct aws_sdk_computeoptimizer::model::LambdaFunctionMemoryRecommendationOption [−][src]
#[non_exhaustive]pub struct LambdaFunctionMemoryRecommendationOption {
pub rank: i32,
pub memory_size: i32,
pub projected_utilization_metrics: Option<Vec<LambdaFunctionMemoryProjectedMetric>>,
pub savings_opportunity: Option<SavingsOpportunity>,
}
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.
Implementations
The rank of the function recommendation option.
The top recommendation option is ranked as 1
.
The memory size, in MB, of the function recommendation option.
An array of objects that describe the projected utilization metrics of the function recommendation option.
An object that describes the savings opportunity for the Lambda function recommendation option. Savings opportunity includes the estimated monthly savings amount and percentage.
Creates a new builder-style object to manufacture LambdaFunctionMemoryRecommendationOption
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more