#[non_exhaustive]pub struct GetTraceSummariesOutput {
pub trace_summaries: Option<Vec<TraceSummary>>,
pub approximate_time: Option<DateTime>,
pub traces_processed_count: Option<i64>,
pub next_token: Option<String>,
/* private fields */
}
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.trace_summaries: Option<Vec<TraceSummary>>
Trace IDs and annotations for traces that were found in the specified time frame.
approximate_time: Option<DateTime>
The start time of this page of results.
traces_processed_count: Option<i64>
The total number of traces processed, including traces that did not match the specified filter expression.
next_token: Option<String>
If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most recent results, closest to the end of the time frame.
Implementations§
source§impl GetTraceSummariesOutput
impl GetTraceSummariesOutput
sourcepub fn trace_summaries(&self) -> &[TraceSummary]
pub fn trace_summaries(&self) -> &[TraceSummary]
Trace IDs and annotations for traces that were found in the specified time frame.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .trace_summaries.is_none()
.
sourcepub fn approximate_time(&self) -> Option<&DateTime>
pub fn approximate_time(&self) -> Option<&DateTime>
The start time of this page of results.
sourcepub fn traces_processed_count(&self) -> Option<i64>
pub fn traces_processed_count(&self) -> Option<i64>
The total number of traces processed, including traces that did not match the specified filter expression.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most recent results, closest to the end of the time frame.
source§impl GetTraceSummariesOutput
impl GetTraceSummariesOutput
sourcepub fn builder() -> GetTraceSummariesOutputBuilder
pub fn builder() -> GetTraceSummariesOutputBuilder
Creates a new builder-style object to manufacture GetTraceSummariesOutput
.
Trait Implementations§
source§impl Clone for GetTraceSummariesOutput
impl Clone for GetTraceSummariesOutput
source§fn clone(&self) -> GetTraceSummariesOutput
fn clone(&self) -> GetTraceSummariesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTraceSummariesOutput
impl Debug for GetTraceSummariesOutput
source§impl PartialEq for GetTraceSummariesOutput
impl PartialEq for GetTraceSummariesOutput
source§fn eq(&self, other: &GetTraceSummariesOutput) -> bool
fn eq(&self, other: &GetTraceSummariesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetTraceSummariesOutput
impl RequestId for GetTraceSummariesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.