Struct rusoto_ec2::SlotDateTimeRangeRequest[][src]

pub struct SlotDateTimeRangeRequest {
    pub earliest_time: String,
    pub latest_time: String,
}

Describes the time period for a Scheduled Instance to start its first schedule. The time period must span less than one day.

Fields

The earliest date and time, in UTC, for the Scheduled Instance to start.

The latest date and time, in UTC, for the Scheduled Instance to start. This value must be later than or equal to the earliest date and at most three months in the future.

Trait Implementations

impl Default for SlotDateTimeRangeRequest
[src]

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

impl Debug for SlotDateTimeRangeRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SlotDateTimeRangeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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