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 a DB 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§
Source§impl Clone for GetResourceMetricsResponse
impl Clone for GetResourceMetricsResponse
Source§fn clone(&self) -> GetResourceMetricsResponse
fn clone(&self) -> GetResourceMetricsResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more