[][src]Struct rusoto_application_insights::ListProblemsRequest

pub struct ListProblemsRequest {
    pub end_time: Option<f64>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub resource_group_name: Option<String>,
    pub start_time: Option<f64>,
}

Fields

end_time: Option<f64>

The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.

max_results: Option<i64>

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value.

next_token: Option<String>

The token to request the next page of results.

resource_group_name: Option<String>

The name of the resource group.

start_time: Option<f64>

The time when the problem was detected, in epoch seconds. If you don't specify a time frame for the request, problems within the past seven days are returned.

Trait Implementations

impl Clone for ListProblemsRequest[src]

impl Debug for ListProblemsRequest[src]

impl Default for ListProblemsRequest[src]

impl PartialEq<ListProblemsRequest> for ListProblemsRequest[src]

impl Serialize for ListProblemsRequest[src]

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