[][src]Struct rusoto_codeguruprofiler::BatchGetFrameMetricDataRequest

pub struct BatchGetFrameMetricDataRequest {
    pub end_time: Option<f64>,
    pub frame_metrics: Option<Vec<FrameMetric>>,
    pub period: Option<String>,
    pub profiling_group_name: String,
    pub start_time: Option<f64>,
    pub target_resolution: Option<String>,
}

The structure representing the BatchGetFrameMetricDataRequest.

Fields

end_time: Option<f64>

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.

frame_metrics: Option<Vec<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.

period: Option<String>

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).

profiling_group_name: String

The name of the profiling group associated with the the frame metrics used to return the time series values.

start_time: Option<f64>

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.

target_resolution: Option<String>

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

Trait Implementations

impl Clone for BatchGetFrameMetricDataRequest[src]

impl Debug for BatchGetFrameMetricDataRequest[src]

impl Default for BatchGetFrameMetricDataRequest[src]

impl PartialEq<BatchGetFrameMetricDataRequest> for BatchGetFrameMetricDataRequest[src]

impl Serialize for BatchGetFrameMetricDataRequest[src]

impl StructuralPartialEq for BatchGetFrameMetricDataRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.