[][src]Struct rusoto_devicefarm::ListTestGridSessionsRequest

pub struct ListTestGridSessionsRequest {
    pub creation_time_after: Option<f64>,
    pub creation_time_before: Option<f64>,
    pub end_time_after: Option<f64>,
    pub end_time_before: Option<f64>,
    pub max_result: Option<i64>,
    pub next_token: Option<String>,
    pub project_arn: String,
    pub status: Option<String>,
}

Fields

creation_time_after: Option<f64>

Return only sessions created after this time.

creation_time_before: Option<f64>

Return only sessions created before this time.

end_time_after: Option<f64>

Return only sessions that ended after this time.

end_time_before: Option<f64>

Return only sessions that ended before this time.

max_result: Option<i64>

Return only this many results at a time.

next_token: Option<String>

Pagination token.

project_arn: String

ARN of a TestGridProject.

status: Option<String>

Return only sessions in this state.

Trait Implementations

impl Clone for ListTestGridSessionsRequest[src]

impl Debug for ListTestGridSessionsRequest[src]

impl Default for ListTestGridSessionsRequest[src]

impl PartialEq<ListTestGridSessionsRequest> for ListTestGridSessionsRequest[src]

impl Serialize for ListTestGridSessionsRequest[src]

impl StructuralPartialEq for ListTestGridSessionsRequest[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, 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.