#[non_exhaustive]pub struct BatchGetFrameMetricDataOutput {
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub resolution: Option<AggregationPeriod>,
pub end_times: Option<Vec<TimestampStructure>>,
pub unprocessed_end_times: Option<HashMap<String, Vec<TimestampStructure>>>,
pub frame_metric_data: Option<Vec<FrameMetricDatum>>,
}
Expand description
The structure representing the BatchGetFrameMetricDataResponse.
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.start_time: Option<DateTime>
The start time of the time period for the returned time series values. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
end_time: Option<DateTime>
The end time of the time period for the returned time series values. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
resolution: Option<AggregationPeriod>
Resolution or granularity of the profile data used to generate the time series. This is the value used to jump through time steps in a time series. There are 3 valid values.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
end_times: Option<Vec<TimestampStructure>>
List of instances, or time steps, in the time series. For example, if the period
is one day (PT24H)
), and the resolution
is five minutes (PT5M
), then there are 288 endTimes
in the list that are each five minutes appart.
unprocessed_end_times: Option<HashMap<String, Vec<TimestampStructure>>>
List of instances which remained unprocessed. This will create a missing time step in the list of end times.
frame_metric_data: Option<Vec<FrameMetricDatum>>
Details of the metrics to request a time series of values. The metric includes the name of the frame, the aggregation type to calculate the metric value for the frame, and the thread states to use to get the count for the metric value of the frame.
Implementations
sourceimpl BatchGetFrameMetricDataOutput
impl BatchGetFrameMetricDataOutput
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start time of the time period for the returned time series values. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The end time of the time period for the returned time series values. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
sourcepub fn resolution(&self) -> Option<&AggregationPeriod>
pub fn resolution(&self) -> Option<&AggregationPeriod>
Resolution or granularity of the profile data used to generate the time series. This is the value used to jump through time steps in a time series. There are 3 valid values.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn end_times(&self) -> Option<&[TimestampStructure]>
pub fn end_times(&self) -> Option<&[TimestampStructure]>
List of instances, or time steps, in the time series. For example, if the period
is one day (PT24H)
), and the resolution
is five minutes (PT5M
), then there are 288 endTimes
in the list that are each five minutes appart.
sourcepub fn unprocessed_end_times(
&self
) -> Option<&HashMap<String, Vec<TimestampStructure>>>
pub fn unprocessed_end_times(
&self
) -> Option<&HashMap<String, Vec<TimestampStructure>>>
List of instances which remained unprocessed. This will create a missing time step in the list of end times.
sourcepub fn frame_metric_data(&self) -> Option<&[FrameMetricDatum]>
pub fn frame_metric_data(&self) -> Option<&[FrameMetricDatum]>
Details of the metrics to request a time series of values. The metric includes the name of the frame, the aggregation type to calculate the metric value for the frame, and the thread states to use to get the count for the metric value of the frame.
sourceimpl BatchGetFrameMetricDataOutput
impl BatchGetFrameMetricDataOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchGetFrameMetricDataOutput
Trait Implementations
sourceimpl Clone for BatchGetFrameMetricDataOutput
impl Clone for BatchGetFrameMetricDataOutput
sourcefn clone(&self) -> BatchGetFrameMetricDataOutput
fn clone(&self) -> BatchGetFrameMetricDataOutput
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 Debug for BatchGetFrameMetricDataOutput
impl Debug for BatchGetFrameMetricDataOutput
sourceimpl PartialEq<BatchGetFrameMetricDataOutput> for BatchGetFrameMetricDataOutput
impl PartialEq<BatchGetFrameMetricDataOutput> for BatchGetFrameMetricDataOutput
sourcefn eq(&self, other: &BatchGetFrameMetricDataOutput) -> bool
fn eq(&self, other: &BatchGetFrameMetricDataOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BatchGetFrameMetricDataOutput) -> bool
fn ne(&self, other: &BatchGetFrameMetricDataOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for BatchGetFrameMetricDataOutput
Auto Trait Implementations
impl RefUnwindSafe for BatchGetFrameMetricDataOutput
impl Send for BatchGetFrameMetricDataOutput
impl Sync for BatchGetFrameMetricDataOutput
impl Unpin for BatchGetFrameMetricDataOutput
impl UnwindSafe for BatchGetFrameMetricDataOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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.
sourcefn clone_into(&self, target: &mut T)
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