#[non_exhaustive]pub struct LambdaFunctionUtilizationMetric {
pub name: Option<LambdaFunctionMetricName>,
pub statistic: Option<LambdaFunctionMetricStatistic>,
pub value: f64,
}
Expand description
Describes a utilization metric of 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.name: Option<LambdaFunctionMetricName>
The name of the utilization metric.
The following utilization metrics are available:
-
Duration
- The amount of time that your function code spends processing an event. -
Memory
- The amount of memory used per invocation.
statistic: Option<LambdaFunctionMetricStatistic>
The statistic of the utilization metric.
The Compute Optimizer API, Command Line Interface (CLI), and SDKs return utilization metrics using only the Maximum
statistic, which is the highest value observed during the specified period.
The Compute Optimizer console displays graphs for some utilization metrics using the Average
statistic, which is the value of Sum
/ SampleCount
during the specified period. For more information, see Viewing resource recommendations in the Compute Optimizer User Guide. You can also get averaged utilization metric data for your resources using Amazon CloudWatch. For more information, see the Amazon CloudWatch User Guide.
value: f64
The value of the utilization metric.
Implementations
sourceimpl LambdaFunctionUtilizationMetric
impl LambdaFunctionUtilizationMetric
sourcepub fn name(&self) -> Option<&LambdaFunctionMetricName>
pub fn name(&self) -> Option<&LambdaFunctionMetricName>
The name of the utilization metric.
The following utilization metrics are available:
-
Duration
- The amount of time that your function code spends processing an event. -
Memory
- The amount of memory used per invocation.
sourcepub fn statistic(&self) -> Option<&LambdaFunctionMetricStatistic>
pub fn statistic(&self) -> Option<&LambdaFunctionMetricStatistic>
The statistic of the utilization metric.
The Compute Optimizer API, Command Line Interface (CLI), and SDKs return utilization metrics using only the Maximum
statistic, which is the highest value observed during the specified period.
The Compute Optimizer console displays graphs for some utilization metrics using the Average
statistic, which is the value of Sum
/ SampleCount
during the specified period. For more information, see Viewing resource recommendations in the Compute Optimizer User Guide. You can also get averaged utilization metric data for your resources using Amazon CloudWatch. For more information, see the Amazon CloudWatch User Guide.
sourceimpl LambdaFunctionUtilizationMetric
impl LambdaFunctionUtilizationMetric
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LambdaFunctionUtilizationMetric
Trait Implementations
sourceimpl Clone for LambdaFunctionUtilizationMetric
impl Clone for LambdaFunctionUtilizationMetric
sourcefn clone(&self) -> LambdaFunctionUtilizationMetric
fn clone(&self) -> LambdaFunctionUtilizationMetric
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 more
sourceimpl PartialEq<LambdaFunctionUtilizationMetric> for LambdaFunctionUtilizationMetric
impl PartialEq<LambdaFunctionUtilizationMetric> for LambdaFunctionUtilizationMetric
sourcefn eq(&self, other: &LambdaFunctionUtilizationMetric) -> bool
fn eq(&self, other: &LambdaFunctionUtilizationMetric) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &LambdaFunctionUtilizationMetric) -> bool
fn ne(&self, other: &LambdaFunctionUtilizationMetric) -> bool
This method tests for !=
.
impl StructuralPartialEq for LambdaFunctionUtilizationMetric
Auto Trait Implementations
impl RefUnwindSafe for LambdaFunctionUtilizationMetric
impl Send for LambdaFunctionUtilizationMetric
impl Sync for LambdaFunctionUtilizationMetric
impl Unpin for LambdaFunctionUtilizationMetric
impl UnwindSafe for LambdaFunctionUtilizationMetric
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more