[−][src]Struct rusoto_cloudtrail::LookupEventsRequest
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]
fn eq(&self, other: &LookupEventsRequest) -> bool
[src]
fn ne(&self, other: &LookupEventsRequest) -> bool
[src]
impl Default for LookupEventsRequest
[src]
fn default() -> LookupEventsRequest
[src]
impl Clone for LookupEventsRequest
[src]
fn clone(&self) -> LookupEventsRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for LookupEventsRequest
[src]
impl Serialize for LookupEventsRequest
[src]
Auto Trait Implementations
impl Send for LookupEventsRequest
impl Sync for LookupEventsRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self