[][src]Struct rusoto_codeguruprofiler::GetProfileRequest

pub struct GetProfileRequest {
    pub accept: Option<String>,
    pub end_time: Option<f64>,
    pub max_depth: Option<i64>,
    pub period: Option<String>,
    pub profiling_group_name: String,
    pub start_time: Option<f64>,
}

Request for GetProfile operation.

Fields

accept: Option<String>

The format of the profile to return. Supports application/json or application/x-amzn-ion. Defaults to application/x-amzn-ion.

end_time: Option<f64>

The end time of the profile to get. Either period or endTime must be specified. Must be greater than start and the overall time range to be in the past and not larger than a week.

max_depth: Option<i64>period: Option<String>

The period of the profile to get. Exactly two of startTime, period and endTime must be specified. Must be positive and the overall time range to be in the past and not larger than a week.

profiling_group_name: Stringstart_time: Option<f64>

The start time of the profile to get.

Trait Implementations

impl Clone for GetProfileRequest[src]

impl Debug for GetProfileRequest[src]

impl Default for GetProfileRequest[src]

impl PartialEq<GetProfileRequest> for GetProfileRequest[src]

impl Serialize for GetProfileRequest[src]

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