Struct aws_sdk_computeoptimizer::operation::get_ec2_recommendation_projected_metrics::GetEc2RecommendationProjectedMetricsInput
source · #[non_exhaustive]pub struct GetEc2RecommendationProjectedMetricsInput {
pub instance_arn: Option<String>,
pub stat: Option<MetricStatistic>,
pub period: Option<i32>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub recommendation_preferences: Option<RecommendationPreferences>,
}
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.instance_arn: Option<String>
The Amazon Resource Name (ARN) of the instances for which to return recommendation projected metrics.
stat: Option<MetricStatistic>
The statistic of the projected metrics.
period: Option<i32>
The granularity, in seconds, of the projected metrics data points.
start_time: Option<DateTime>
The timestamp of the first projected metrics data point to return.
end_time: Option<DateTime>
The timestamp of the last projected metrics data point to return.
recommendation_preferences: Option<RecommendationPreferences>
An object to specify the preferences for the Amazon EC2 recommendation projected metrics to return in the response.
Implementations§
source§impl GetEc2RecommendationProjectedMetricsInput
impl GetEc2RecommendationProjectedMetricsInput
sourcepub fn instance_arn(&self) -> Option<&str>
pub fn instance_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the instances for which to return recommendation projected metrics.
sourcepub fn stat(&self) -> Option<&MetricStatistic>
pub fn stat(&self) -> Option<&MetricStatistic>
The statistic of the projected metrics.
sourcepub fn period(&self) -> Option<i32>
pub fn period(&self) -> Option<i32>
The granularity, in seconds, of the projected metrics data points.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The timestamp of the first projected metrics data point to return.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The timestamp of the last projected metrics data point to return.
sourcepub fn recommendation_preferences(&self) -> Option<&RecommendationPreferences>
pub fn recommendation_preferences(&self) -> Option<&RecommendationPreferences>
An object to specify the preferences for the Amazon EC2 recommendation projected metrics to return in the response.
source§impl GetEc2RecommendationProjectedMetricsInput
impl GetEc2RecommendationProjectedMetricsInput
sourcepub fn builder() -> GetEc2RecommendationProjectedMetricsInputBuilder
pub fn builder() -> GetEc2RecommendationProjectedMetricsInputBuilder
Creates a new builder-style object to manufacture GetEc2RecommendationProjectedMetricsInput
.
Trait Implementations§
source§impl Clone for GetEc2RecommendationProjectedMetricsInput
impl Clone for GetEc2RecommendationProjectedMetricsInput
source§fn clone(&self) -> GetEc2RecommendationProjectedMetricsInput
fn clone(&self) -> GetEc2RecommendationProjectedMetricsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetEc2RecommendationProjectedMetricsInput
impl PartialEq for GetEc2RecommendationProjectedMetricsInput
source§fn eq(&self, other: &GetEc2RecommendationProjectedMetricsInput) -> bool
fn eq(&self, other: &GetEc2RecommendationProjectedMetricsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetEc2RecommendationProjectedMetricsInput
Auto Trait Implementations§
impl Freeze for GetEc2RecommendationProjectedMetricsInput
impl RefUnwindSafe for GetEc2RecommendationProjectedMetricsInput
impl Send for GetEc2RecommendationProjectedMetricsInput
impl Sync for GetEc2RecommendationProjectedMetricsInput
impl Unpin for GetEc2RecommendationProjectedMetricsInput
impl UnwindSafe for GetEc2RecommendationProjectedMetricsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more