#[non_exhaustive]pub struct ListTestGridSessionsInput {
pub project_arn: Option<String>,
pub status: Option<TestGridSessionStatus>,
pub creation_time_after: Option<DateTime>,
pub creation_time_before: Option<DateTime>,
pub end_time_after: Option<DateTime>,
pub end_time_before: Option<DateTime>,
pub max_result: Option<i32>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project_arn: Option<String>ARN of a TestGridProject.
status: Option<TestGridSessionStatus>Return only sessions in this state.
creation_time_after: Option<DateTime>Return only sessions created after this time.
creation_time_before: Option<DateTime>Return only sessions created before this time.
end_time_after: Option<DateTime>Return only sessions that ended after this time.
end_time_before: Option<DateTime>Return only sessions that ended before this time.
max_result: Option<i32>Return only this many results at a time.
next_token: Option<String>Pagination token.
Implementations§
source§impl ListTestGridSessionsInput
impl ListTestGridSessionsInput
sourcepub fn project_arn(&self) -> Option<&str>
pub fn project_arn(&self) -> Option<&str>
ARN of a TestGridProject.
sourcepub fn status(&self) -> Option<&TestGridSessionStatus>
pub fn status(&self) -> Option<&TestGridSessionStatus>
Return only sessions in this state.
sourcepub fn creation_time_after(&self) -> Option<&DateTime>
pub fn creation_time_after(&self) -> Option<&DateTime>
Return only sessions created after this time.
sourcepub fn creation_time_before(&self) -> Option<&DateTime>
pub fn creation_time_before(&self) -> Option<&DateTime>
Return only sessions created before this time.
sourcepub fn end_time_after(&self) -> Option<&DateTime>
pub fn end_time_after(&self) -> Option<&DateTime>
Return only sessions that ended after this time.
sourcepub fn end_time_before(&self) -> Option<&DateTime>
pub fn end_time_before(&self) -> Option<&DateTime>
Return only sessions that ended before this time.
sourcepub fn max_result(&self) -> Option<i32>
pub fn max_result(&self) -> Option<i32>
Return only this many results at a time.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token.
source§impl ListTestGridSessionsInput
impl ListTestGridSessionsInput
sourcepub fn builder() -> ListTestGridSessionsInputBuilder
pub fn builder() -> ListTestGridSessionsInputBuilder
Creates a new builder-style object to manufacture ListTestGridSessionsInput.
Trait Implementations§
source§impl Clone for ListTestGridSessionsInput
impl Clone for ListTestGridSessionsInput
source§fn clone(&self) -> ListTestGridSessionsInput
fn clone(&self) -> ListTestGridSessionsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListTestGridSessionsInput
impl Debug for ListTestGridSessionsInput
impl StructuralPartialEq for ListTestGridSessionsInput
Auto Trait Implementations§
impl Freeze for ListTestGridSessionsInput
impl RefUnwindSafe for ListTestGridSessionsInput
impl Send for ListTestGridSessionsInput
impl Sync for ListTestGridSessionsInput
impl Unpin for ListTestGridSessionsInput
impl UnwindSafe for ListTestGridSessionsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.