Struct rusoto_elasticbeanstalk::EventDescriptionsMessage[][src]

pub struct EventDescriptionsMessage {
    pub events: Option<Vec<EventDescription>>,
    pub next_token: Option<String>,
}

Result message wrapping a list of event descriptions.

Fields

A list of EventDescription.

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.

Trait Implementations

impl Default for EventDescriptionsMessage
[src]

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

impl Debug for EventDescriptionsMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for EventDescriptionsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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