[][src]Struct rusoto_xray::GetTraceSummariesRequest

pub struct GetTraceSummariesRequest {
    pub end_time: f64,
    pub filter_expression: Option<String>,
    pub next_token: Option<String>,
    pub sampling: Option<bool>,
    pub sampling_strategy: Option<SamplingStrategy>,
    pub start_time: f64,
    pub time_range_type: Option<String>,
}

Fields

end_time: f64

The end of the time frame for which to retrieve traces.

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.

sampling: Option<bool>

Set to true to get summaries for only a subset of available traces.

sampling_strategy: Option<SamplingStrategy>

A paramater to indicate whether to enable sampling on trace summaries. Input parameters are Name and Value.

start_time: f64

The start of the time frame for which to retrieve traces.

time_range_type: Option<String>

A parameter to indicate whether to query trace summaries by TraceId or Event time.

Trait Implementations

impl Clone for GetTraceSummariesRequest[src]

impl Debug for GetTraceSummariesRequest[src]

impl Default for GetTraceSummariesRequest[src]

impl PartialEq<GetTraceSummariesRequest> for GetTraceSummariesRequest[src]

impl Serialize for GetTraceSummariesRequest[src]

impl StructuralPartialEq for GetTraceSummariesRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.