Struct aws_sdk_autoscaling::operation::get_predictive_scaling_forecast::GetPredictiveScalingForecastOutput
source · #[non_exhaustive]pub struct GetPredictiveScalingForecastOutput {
pub load_forecast: Option<Vec<LoadForecast>>,
pub capacity_forecast: Option<CapacityForecast>,
pub update_time: Option<DateTime>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.load_forecast: Option<Vec<LoadForecast>>The load forecast.
capacity_forecast: Option<CapacityForecast>The capacity forecast.
update_time: Option<DateTime>The time the forecast was made.
Implementations§
source§impl GetPredictiveScalingForecastOutput
impl GetPredictiveScalingForecastOutput
sourcepub fn load_forecast(&self) -> &[LoadForecast]
pub fn load_forecast(&self) -> &[LoadForecast]
The load forecast.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .load_forecast.is_none().
sourcepub fn capacity_forecast(&self) -> Option<&CapacityForecast>
pub fn capacity_forecast(&self) -> Option<&CapacityForecast>
The capacity forecast.
sourcepub fn update_time(&self) -> Option<&DateTime>
pub fn update_time(&self) -> Option<&DateTime>
The time the forecast was made.
source§impl GetPredictiveScalingForecastOutput
impl GetPredictiveScalingForecastOutput
sourcepub fn builder() -> GetPredictiveScalingForecastOutputBuilder
pub fn builder() -> GetPredictiveScalingForecastOutputBuilder
Creates a new builder-style object to manufacture GetPredictiveScalingForecastOutput.
Trait Implementations§
source§impl Clone for GetPredictiveScalingForecastOutput
impl Clone for GetPredictiveScalingForecastOutput
source§fn clone(&self) -> GetPredictiveScalingForecastOutput
fn clone(&self) -> GetPredictiveScalingForecastOutput
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 for GetPredictiveScalingForecastOutput
impl PartialEq for GetPredictiveScalingForecastOutput
source§fn eq(&self, other: &GetPredictiveScalingForecastOutput) -> bool
fn eq(&self, other: &GetPredictiveScalingForecastOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetPredictiveScalingForecastOutput
impl RequestId for GetPredictiveScalingForecastOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetPredictiveScalingForecastOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetPredictiveScalingForecastOutput
impl Send for GetPredictiveScalingForecastOutput
impl Sync for GetPredictiveScalingForecastOutput
impl Unpin for GetPredictiveScalingForecastOutput
impl UnwindSafe for GetPredictiveScalingForecastOutput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.