Struct aws_sdk_xray::input::GetTraceSummariesInput
source · [−]#[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 or Event 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
sourceimpl GetTraceSummariesInput
impl GetTraceSummariesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetTraceSummaries, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetTraceSummaries, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetTraceSummaries
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetTraceSummariesInput
sourceimpl 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 or Event 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.
Trait Implementations
sourceimpl Clone for GetTraceSummariesInput
impl Clone for GetTraceSummariesInput
sourcefn clone(&self) -> GetTraceSummariesInput
fn clone(&self) -> GetTraceSummariesInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetTraceSummariesInput
impl Debug for GetTraceSummariesInput
sourceimpl PartialEq<GetTraceSummariesInput> for GetTraceSummariesInput
impl PartialEq<GetTraceSummariesInput> for GetTraceSummariesInput
sourcefn eq(&self, other: &GetTraceSummariesInput) -> bool
fn eq(&self, other: &GetTraceSummariesInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetTraceSummariesInput) -> bool
fn ne(&self, other: &GetTraceSummariesInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GetTraceSummariesInput
Auto Trait Implementations
impl RefUnwindSafe for GetTraceSummariesInput
impl Send for GetTraceSummariesInput
impl Sync for GetTraceSummariesInput
impl Unpin for GetTraceSummariesInput
impl UnwindSafe for GetTraceSummariesInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more