Struct aws_sdk_connect::output::GetCurrentMetricDataOutput [−][src]
#[non_exhaustive]pub struct GetCurrentMetricDataOutput {
pub next_token: Option<String>,
pub metric_results: Option<Vec<CurrentMetricResult>>,
pub data_snapshot_time: Option<DateTime>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.next_token: Option<String>
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.
metric_results: Option<Vec<CurrentMetricResult>>
Information about the real-time metrics.
data_snapshot_time: Option<DateTime>
The time at which the metrics were retrieved and cached for pagination.
Implementations
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.
Information about the real-time metrics.
The time at which the metrics were retrieved and cached for pagination.
Creates a new builder-style object to manufacture GetCurrentMetricDataOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more