[][src]Struct rusoto_codeguruprofiler::ListProfileTimesRequest

pub struct ListProfileTimesRequest {
    pub end_time: f64,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub order_by: Option<String>,
    pub period: String,
    pub profiling_group_name: String,
    pub start_time: f64,
}

Request for ListProfileTimes operation.

Fields

end_time: f64

The end time of the time range to list profiles until.

max_results: Option<i64>next_token: Option<String>order_by: Option<String>

The order (ascending or descending by start time of the profile) to list the profiles by. Defaults to TIMESTAMP_DESCENDING.

period: String

The aggregation period to list the profiles for.

profiling_group_name: Stringstart_time: f64

The start time of the time range to list the profiles from.

Trait Implementations

impl Clone for ListProfileTimesRequest[src]

impl Debug for ListProfileTimesRequest[src]

impl Default for ListProfileTimesRequest[src]

impl PartialEq<ListProfileTimesRequest> for ListProfileTimesRequest[src]

impl Serialize for ListProfileTimesRequest[src]

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