[][src]Struct rusoto_cloudtrail::LookupEventsRequest

pub struct LookupEventsRequest {
    pub end_time: Option<f64>,
    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.

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 PartialEq<LookupEventsRequest> for LookupEventsRequest[src]

impl Clone for LookupEventsRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for LookupEventsRequest[src]

impl Debug for LookupEventsRequest[src]

impl Serialize for LookupEventsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self