[][src]Struct rusoto_cloudtrail::LookupEventsRequest

pub struct LookupEventsRequest {
    pub end_time: Option<f64>,
    pub event_category: Option<String>,
    pub lookup_attributes: Option<Vec<LookupAttribute>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub start_time: Option<f64>,
}

Contains a request for LookupEvents.

Fields

end_time: Option<f64>

Specifies that only events that occur before or at the specified time are returned. If the specified end time is before the specified start time, an error is returned.

event_category: Option<String>

Specifies the event category. If you do not specify an event category, events of the category are not returned in the response. For example, if you do not specify insight as the value of EventCategory, no Insights events are returned.

lookup_attributes: Option<Vec<LookupAttribute>>

Contains a list of lookup attributes. Currently the list can contain only one item.

max_results: Option<i64>

The number of events to return. Possible values are 1 through 50. The default is 50.

next_token: Option<String>

The token to use to get the next page of results after a previous API call. This token must be passed in with the same parameters that were specified in the the original call. For example, if the original call specified an AttributeKey of 'Username' with a value of 'root', the call with NextToken should include those same parameters.

start_time: Option<f64>

Specifies that only events that occur after or at the specified time are returned. If the specified start time is after the specified end time, an error is returned.

Trait Implementations

impl Clone for LookupEventsRequest[src]

impl Debug for LookupEventsRequest[src]

impl Default for LookupEventsRequest[src]

impl PartialEq<LookupEventsRequest> for LookupEventsRequest[src]

impl Serialize for LookupEventsRequest[src]

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