[][src]Struct rusoto_xray::GetInsightSummariesRequest

pub struct GetInsightSummariesRequest {
    pub end_time: f64,
    pub group_arn: Option<String>,
    pub group_name: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub start_time: f64,
    pub states: Option<Vec<String>>,
}

Fields

end_time: f64

The end of the time frame in which the insights ended. The end time can't be more than 30 days old.

group_arn: Option<String>

The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided.

group_name: Option<String>

The name of the group. Required if the GroupARN isn't provided.

max_results: Option<i64>

The maximum number of results to display.

next_token: Option<String>

Pagination token.

start_time: f64

The beginning of the time frame in which the insights started. The start time can't be more than 30 days old.

states: Option<Vec<String>>

The list of insight states.

Trait Implementations

impl Clone for GetInsightSummariesRequest[src]

impl Debug for GetInsightSummariesRequest[src]

impl Default for GetInsightSummariesRequest[src]

impl PartialEq<GetInsightSummariesRequest> for GetInsightSummariesRequest[src]

impl Serialize for GetInsightSummariesRequest[src]

impl StructuralPartialEq for GetInsightSummariesRequest[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, 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.