#[non_exhaustive]pub struct ListTestGridSessionsInput { /* private fields */ }Implementations
sourceimpl ListTestGridSessionsInput
impl ListTestGridSessionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTestGridSessions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTestGridSessions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListTestGridSessions>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListTestGridSessionsInput.
sourceimpl 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.
Trait Implementations
sourceimpl Clone for ListTestGridSessionsInput
impl Clone for ListTestGridSessionsInput
sourcefn clone(&self) -> ListTestGridSessionsInput
fn clone(&self) -> ListTestGridSessionsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ListTestGridSessionsInput
impl Debug for ListTestGridSessionsInput
sourceimpl PartialEq<ListTestGridSessionsInput> for ListTestGridSessionsInput
impl PartialEq<ListTestGridSessionsInput> for ListTestGridSessionsInput
sourcefn eq(&self, other: &ListTestGridSessionsInput) -> bool
fn eq(&self, other: &ListTestGridSessionsInput) -> bool
impl StructuralPartialEq for ListTestGridSessionsInput
Auto Trait Implementations
impl RefUnwindSafe for ListTestGridSessionsInput
impl Send for ListTestGridSessionsInput
impl Sync for ListTestGridSessionsInput
impl Unpin for ListTestGridSessionsInput
impl UnwindSafe for ListTestGridSessionsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more