[][src]Struct rusoto_application_insights::ListConfigurationHistoryRequest

pub struct ListConfigurationHistoryRequest {
    pub end_time: Option<f64>,
    pub event_status: Option<String>,
    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 end time of the event.

event_status: Option<String>

The status of the configuration update event. Possible values include INFO, WARN, and ERROR.

max_results: Option<i64>

The maximum number of results returned by ListConfigurationHistory in paginated output. When this parameter is used, ListConfigurationHistory returns only MaxResults in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another ListConfigurationHistory request with the returned NextToken value. If this parameter is not used, then ListConfigurationHistory returns all results.

next_token: Option<String>

The NextToken value returned from a previous paginated ListConfigurationHistory request where MaxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken value. This value is null when there are no more results to return.

resource_group_name: Option<String>

Resource group to which the application belongs.

start_time: Option<f64>

The start time of the event.

Trait Implementations

impl Clone for ListConfigurationHistoryRequest[src]

impl Debug for ListConfigurationHistoryRequest[src]

impl Default for ListConfigurationHistoryRequest[src]

impl PartialEq<ListConfigurationHistoryRequest> for ListConfigurationHistoryRequest[src]

impl Serialize for ListConfigurationHistoryRequest[src]

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