Struct rusoto_ec2::InstanceStatusEvent[][src]

pub struct InstanceStatusEvent {
    pub code: Option<String>,
    pub description: Option<String>,
    pub not_after: Option<String>,
    pub not_before: Option<String>,
}

Describes a scheduled event for an instance.

Fields

The event code.

A description of the event.

After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].

The latest scheduled end time for the event.

The earliest scheduled start time for the event.

Trait Implementations

impl Default for InstanceStatusEvent
[src]

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

impl Debug for InstanceStatusEvent
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceStatusEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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