#[non_exhaustive]pub struct GetCurrentMetricDataOutput { /* private fields */ }Implementations§
source§impl GetCurrentMetricDataOutput
impl GetCurrentMetricDataOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If there are additional results, this is the token for the next set of results.
The token expires after 5 minutes from the time it is created. Subsequent requests that use the token must use the same request parameters as the request that generated the token.
sourcepub fn metric_results(&self) -> Option<&[CurrentMetricResult]>
pub fn metric_results(&self) -> Option<&[CurrentMetricResult]>
Information about the real-time metrics.
sourcepub fn data_snapshot_time(&self) -> Option<&DateTime>
pub fn data_snapshot_time(&self) -> Option<&DateTime>
The time at which the metrics were retrieved and cached for pagination.
sourcepub fn approximate_total_count(&self) -> Option<i64>
pub fn approximate_total_count(&self) -> Option<i64>
The total count of the result, regardless of the current page size.
source§impl GetCurrentMetricDataOutput
impl GetCurrentMetricDataOutput
sourcepub fn builder() -> GetCurrentMetricDataOutputBuilder
pub fn builder() -> GetCurrentMetricDataOutputBuilder
Creates a new builder-style object to manufacture GetCurrentMetricDataOutput.
Trait Implementations§
source§impl Clone for GetCurrentMetricDataOutput
impl Clone for GetCurrentMetricDataOutput
source§fn clone(&self) -> GetCurrentMetricDataOutput
fn clone(&self) -> GetCurrentMetricDataOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GetCurrentMetricDataOutput
impl Debug for GetCurrentMetricDataOutput
source§impl PartialEq<GetCurrentMetricDataOutput> for GetCurrentMetricDataOutput
impl PartialEq<GetCurrentMetricDataOutput> for GetCurrentMetricDataOutput
source§fn eq(&self, other: &GetCurrentMetricDataOutput) -> bool
fn eq(&self, other: &GetCurrentMetricDataOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetCurrentMetricDataOutput
impl RequestId for GetCurrentMetricDataOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetCurrentMetricDataOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetCurrentMetricDataOutput
impl Send for GetCurrentMetricDataOutput
impl Sync for GetCurrentMetricDataOutput
impl Unpin for GetCurrentMetricDataOutput
impl UnwindSafe for GetCurrentMetricDataOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more