Struct rusoto_cloudtrail::LookupEventsResponse[][src]

pub struct LookupEventsResponse {
    pub events: Option<Vec<Event>>,
    pub next_token: Option<String>,
}

Contains a response to a LookupEvents action.

Fields

A list of events returned based on the lookup attributes specified and the CloudTrail event. The events list is sorted by time. The most recent event is listed first.

The token to use to get the next page of results after a previous API call. If the token does not appear, there are no more results to return. The token must be passed in with the same parameters as the previous 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.

Trait Implementations

impl Default for LookupEventsResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for LookupEventsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for LookupEventsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LookupEventsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations