pub struct ListJobsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub status: Option<String>,
pub target_selection: Option<String>,
pub thing_group_id: Option<String>,
pub thing_group_name: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of results to return per request.
next_token: Option<String>The token to retrieve the next set of results.
status: Option<String>An optional filter that lets you search for jobs that have the specified status.
target_selection: Option<String>Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.
thing_group_id: Option<String>A filter that limits the returned jobs to those for the specified group.
thing_group_name: Option<String>A filter that limits the returned jobs to those for the specified group.
Trait Implementations§
Source§impl Clone for ListJobsRequest
impl Clone for ListJobsRequest
Source§fn clone(&self) -> ListJobsRequest
fn clone(&self) -> ListJobsRequest
Returns a duplicate 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 ListJobsRequest
impl Debug for ListJobsRequest
Source§impl Default for ListJobsRequest
impl Default for ListJobsRequest
Source§fn default() -> ListJobsRequest
fn default() -> ListJobsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListJobsRequest
impl PartialEq for ListJobsRequest
Source§impl Serialize for ListJobsRequest
impl Serialize for ListJobsRequest
impl StructuralPartialEq for ListJobsRequest
Auto Trait Implementations§
impl Freeze for ListJobsRequest
impl RefUnwindSafe for ListJobsRequest
impl Send for ListJobsRequest
impl Sync for ListJobsRequest
impl Unpin for ListJobsRequest
impl UnwindSafe for ListJobsRequest
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