#[non_exhaustive]pub struct DescribeEventsOutput {
pub events: Option<Vec<EventDescription>>,
pub next_token: Option<String>,
}
Expand description
Result message wrapping a list of event descriptions.
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.events: Option<Vec<EventDescription>>
A list of EventDescription
.
next_token: Option<String>
If returned, this indicates that there are more results to obtain. Use this token in the next DescribeEvents
call to get the next batch of events.
Implementations
If returned, this indicates that there are more results to obtain. Use this token in the next DescribeEvents
call to get the next batch of events.
Creates a new builder-style object to manufacture DescribeEventsOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribeEventsOutput
impl Send for DescribeEventsOutput
impl Sync for DescribeEventsOutput
impl Unpin for DescribeEventsOutput
impl UnwindSafe for DescribeEventsOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more