Struct rusoto_cloudtrail::LookupEventsRequest [] [src]

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

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.

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

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

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.

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

[src]

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

impl Debug for LookupEventsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LookupEventsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations