Struct rusoto_logs::FilterLogEventsResponse[][src]

pub struct FilterLogEventsResponse {
    pub events: Option<Vec<FilteredLogEvent>>,
    pub next_token: Option<String>,
    pub searched_log_streams: Option<Vec<SearchedLogStream>>,
}

Fields

The matched events.

The token to use when requesting the next set of items. The token expires after 24 hours.

Indicates which log streams have been searched and whether each has been searched completely.

Trait Implementations

impl Default for FilterLogEventsResponse
[src]

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

impl Debug for FilterLogEventsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for FilterLogEventsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FilterLogEventsResponse
[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