[][src]Struct rusoto_iot1click_devices::ListDeviceEventsRequest

pub struct ListDeviceEventsRequest {
    pub device_id: String,
    pub from_time_stamp: f64,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub to_time_stamp: f64,
}

Fields

device_id: String

The unique identifier of the device.

from_time_stamp: f64

The start date for the device event query, in ISO8061 format. For example, 2018-03-28T15:45:12.880Z

max_results: Option<i64>

The maximum number of results to return per request. If not set, a default value of 100 is used.

next_token: Option<String>

The token to retrieve the next set of results.

to_time_stamp: f64

The end date for the device event query, in ISO8061 format. For example, 2018-03-28T15:45:12.880Z

Trait Implementations

impl Clone for ListDeviceEventsRequest[src]

impl Debug for ListDeviceEventsRequest[src]

impl Default for ListDeviceEventsRequest[src]

impl PartialEq<ListDeviceEventsRequest> for ListDeviceEventsRequest[src]

impl Serialize for ListDeviceEventsRequest[src]

impl StructuralPartialEq for ListDeviceEventsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.