[][src]Struct rusoto_pi::GetResourceMetricsResponse

pub struct GetResourceMetricsResponse {
    pub aligned_end_time: Option<f64>,
    pub aligned_start_time: Option<f64>,
    pub identifier: Option<String>,
    pub metric_list: Option<Vec<MetricKeyDataPoints>>,
    pub next_token: Option<String>,
}

Fields

aligned_end_time: Option<f64>

The end time for the returned metrics, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedEndTime will be greater than or equal to the value of the user-specified Endtime.

aligned_start_time: Option<f64>

The start time for the returned metrics, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedStartTime will be less than or equal to the value of the user-specified StartTime.

identifier: Option<String>

An immutable, AWS Region-unique identifier for a data source. Performance Insights gathers metrics from this data source.

To use an Amazon RDS instance as a data source, you specify its DbiResourceId value - for example: db-FAIHNTYBKTGAUSUZQYPDS2GW4A

metric_list: Option<Vec<MetricKeyDataPoints>>

An array of metric results,, where each array element contains all of the data points for a particular dimension.

next_token: Option<String>

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords.

Trait Implementations

impl Clone for GetResourceMetricsResponse[src]

impl Debug for GetResourceMetricsResponse[src]

impl Default for GetResourceMetricsResponse[src]

impl<'de> Deserialize<'de> for GetResourceMetricsResponse[src]

impl PartialEq<GetResourceMetricsResponse> for GetResourceMetricsResponse[src]

impl StructuralPartialEq for GetResourceMetricsResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.