#[non_exhaustive]pub struct BatchGetFrameMetricDataInput { /* private fields */ }
Expand description
The structure representing the BatchGetFrameMetricDataRequest.
Implementations§
source§impl BatchGetFrameMetricDataInput
impl BatchGetFrameMetricDataInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchGetFrameMetricData, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchGetFrameMetricData, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<BatchGetFrameMetricData
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchGetFrameMetricDataInput
.
source§impl BatchGetFrameMetricDataInput
impl BatchGetFrameMetricDataInput
sourcepub fn profiling_group_name(&self) -> Option<&str>
pub fn profiling_group_name(&self) -> Option<&str>
The name of the profiling group associated with the the frame metrics used to return the time series values.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start time of the time period for the frame metrics used to return the 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 period(&self) -> Option<&str>
pub fn period(&self) -> Option<&str>
The duration of the frame metrics used to return the time series values. Specify using the ISO 8601 format. The maximum period duration is one day (PT24H
or P1D
).
sourcepub fn target_resolution(&self) -> Option<&AggregationPeriod>
pub fn target_resolution(&self) -> Option<&AggregationPeriod>
The requested resolution of time steps for the returned time series of values. If the requested target resolution is not available due to data not being retained we provide a best effort result by falling back to the most granular available resolution after the target resolution. There are 3 valid values.
-
P1D
— 1 day -
PT1H
— 1 hour -
PT5M
— 5 minutes
sourcepub fn frame_metrics(&self) -> Option<&[FrameMetric]>
pub fn frame_metrics(&self) -> Option<&[FrameMetric]>
The details of the metrics that are used 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.
Trait Implementations§
source§impl Clone for BatchGetFrameMetricDataInput
impl Clone for BatchGetFrameMetricDataInput
source§fn clone(&self) -> BatchGetFrameMetricDataInput
fn clone(&self) -> BatchGetFrameMetricDataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchGetFrameMetricDataInput
impl Debug for BatchGetFrameMetricDataInput
source§impl PartialEq<BatchGetFrameMetricDataInput> for BatchGetFrameMetricDataInput
impl PartialEq<BatchGetFrameMetricDataInput> for BatchGetFrameMetricDataInput
source§fn eq(&self, other: &BatchGetFrameMetricDataInput) -> bool
fn eq(&self, other: &BatchGetFrameMetricDataInput) -> bool
self
and other
values to be equal, and is used
by ==
.