#[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 ==
.impl StructuralPartialEq for GetTraceSummariesInput
Auto Trait Implementations§
impl Freeze for GetTraceSummariesInput
impl RefUnwindSafe for GetTraceSummariesInput
impl Send for GetTraceSummariesInput
impl Sync for GetTraceSummariesInput
impl Unpin for GetTraceSummariesInput
impl UnwindSafe for GetTraceSummariesInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more