[][src]Struct rusoto_xray::GetInsightImpactGraphRequest

pub struct GetInsightImpactGraphRequest {
    pub end_time: f64,
    pub insight_id: String,
    pub next_token: Option<String>,
    pub start_time: f64,
}

Fields

end_time: f64

The estimated end time of the insight, in Unix time seconds. The EndTime is exclusive of the value provided. The time range between the start time and end time can't be more than six hours.

insight_id: String

The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.

next_token: Option<String>

Specify the pagination token returned by a previous request to retrieve the next page of results.

start_time: f64

The estimated start time of the insight, in Unix time seconds. The StartTime is inclusive of the value provided and can't be more than 30 days old.

Trait Implementations

impl Clone for GetInsightImpactGraphRequest[src]

impl Debug for GetInsightImpactGraphRequest[src]

impl Default for GetInsightImpactGraphRequest[src]

impl PartialEq<GetInsightImpactGraphRequest> for GetInsightImpactGraphRequest[src]

impl Serialize for GetInsightImpactGraphRequest[src]

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