#[non_exhaustive]pub struct DescribeEventsOutput {
pub next_token: Option<String>,
pub events: Option<Vec<Event>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.next_token: Option<String>
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
events: Option<Vec<Event>>
A list of events. Each element in the list contains detailed information about one event.
Implementations§
source§impl DescribeEventsOutput
impl DescribeEventsOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
source§impl DescribeEventsOutput
impl DescribeEventsOutput
sourcepub fn builder() -> DescribeEventsOutputBuilder
pub fn builder() -> DescribeEventsOutputBuilder
Creates a new builder-style object to manufacture DescribeEventsOutput
.
Trait Implementations§
source§impl Clone for DescribeEventsOutput
impl Clone for DescribeEventsOutput
source§fn clone(&self) -> DescribeEventsOutput
fn clone(&self) -> DescribeEventsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeEventsOutput
impl Debug for DescribeEventsOutput
source§impl PartialEq for DescribeEventsOutput
impl PartialEq for DescribeEventsOutput
source§fn eq(&self, other: &DescribeEventsOutput) -> bool
fn eq(&self, other: &DescribeEventsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeEventsOutput
impl RequestId for DescribeEventsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.