Struct rusoto_elasticbeanstalk::EventDescription[][src]

pub struct EventDescription {
    pub application_name: Option<String>,
    pub environment_name: Option<String>,
    pub event_date: Option<String>,
    pub message: Option<String>,
    pub platform_arn: Option<String>,
    pub request_id: Option<String>,
    pub severity: Option<String>,
    pub template_name: Option<String>,
    pub version_label: Option<String>,
}

Describes an event.

Fields

The application associated with the event.

The name of the environment associated with this event.

The date when the event occurred.

The event message.

The ARN of the platform.

The web service request ID for the activity of this event.

The severity level of this event.

The name of the configuration associated with this event.

The release label for the application version associated with this event.

Trait Implementations

impl Default for EventDescription
[src]

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

impl Debug for EventDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for EventDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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