#[non_exhaustive]pub struct GetTraceSummariesInput {
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub time_range_type: Option<TimeRangeType>,
pub sampling: Option<bool>,
pub sampling_strategy: Option<SamplingStrategy>,
pub filter_expression: Option<String>,
pub next_token: Option<String>,
}
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.start_time: Option<DateTime>
The start of the time frame for which to retrieve traces.
end_time: Option<DateTime>
The end of the time frame for which to retrieve traces.
time_range_type: Option<TimeRangeType>
A parameter to indicate whether to query trace summaries by TraceId, Event (trace update time), or Service (segment end time).
sampling: Option<bool>
Set to true
to get summaries for only a subset of available traces.
sampling_strategy: Option<SamplingStrategy>
A parameter to indicate whether to enable sampling on trace summaries. Input parameters are Name and Value.
filter_expression: Option<String>
Specify a filter expression to retrieve trace summaries for services or requests that meet certain requirements.
next_token: Option<String>
Specify the pagination token returned by a previous request to retrieve the next page of results.
Implementations§
source§impl GetTraceSummariesInput
impl GetTraceSummariesInput
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start of the time frame for which to retrieve traces.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The end of the time frame for which to retrieve traces.
sourcepub fn time_range_type(&self) -> Option<&TimeRangeType>
pub fn time_range_type(&self) -> Option<&TimeRangeType>
A parameter to indicate whether to query trace summaries by TraceId, Event (trace update time), or Service (segment end time).
sourcepub fn sampling(&self) -> Option<bool>
pub fn sampling(&self) -> Option<bool>
Set to true
to get summaries for only a subset of available traces.
sourcepub fn sampling_strategy(&self) -> Option<&SamplingStrategy>
pub fn sampling_strategy(&self) -> Option<&SamplingStrategy>
A parameter to indicate whether to enable sampling on trace summaries. Input parameters are Name and Value.
sourcepub fn filter_expression(&self) -> Option<&str>
pub fn filter_expression(&self) -> Option<&str>
Specify a filter expression to retrieve trace summaries for services or requests that meet certain requirements.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Specify the pagination token returned by a previous request to retrieve the next page of results.
source§impl GetTraceSummariesInput
impl GetTraceSummariesInput
sourcepub fn builder() -> GetTraceSummariesInputBuilder
pub fn builder() -> GetTraceSummariesInputBuilder
Creates a new builder-style object to manufacture GetTraceSummariesInput
.
Trait Implementations§
source§impl Clone for GetTraceSummariesInput
impl Clone for GetTraceSummariesInput
source§fn clone(&self) -> GetTraceSummariesInput
fn clone(&self) -> GetTraceSummariesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTraceSummariesInput
impl Debug for GetTraceSummariesInput
source§impl PartialEq for GetTraceSummariesInput
impl PartialEq for GetTraceSummariesInput
source§fn eq(&self, other: &GetTraceSummariesInput) -> bool
fn eq(&self, other: &GetTraceSummariesInput) -> bool
self
and other
values to be equal, and is used
by ==
.