Struct rusoto_health::DateTimeRange [] [src]

pub struct DateTimeRange {
    pub from: Option<Timestamp>,
    pub to: Option<Timestamp>,
}

A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp (startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

Fields

The starting date and time of a time range.

The ending date and time of a time range.

Trait Implementations

impl Default for DateTimeRange
[src]

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

impl Debug for DateTimeRange
[src]

Formats the value using the given formatter.

impl Clone for DateTimeRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more