Struct aws_sdk_iot::input::ListJobsInput [−][src]
#[non_exhaustive]pub struct ListJobsInput {
pub status: Option<JobStatus>,
pub target_selection: Option<TargetSelection>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub thing_group_name: Option<String>,
pub thing_group_id: Option<String>,
pub namespace_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status: Option<JobStatus>
An optional filter that lets you search for jobs that have the specified status.
target_selection: Option<TargetSelection>
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.
max_results: Option<i32>
The maximum number of results to return per request.
next_token: Option<String>
The token to retrieve the next set of results.
thing_group_name: Option<String>
A filter that limits the returned jobs to those for the specified group.
thing_group_id: Option<String>
A filter that limits the returned jobs to those for the specified group.
namespace_id: Option<String>
The namespace used to indicate that a job is a customer-managed job.
When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.
$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/
The namespaceId
feature is in public preview.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListJobs
>
Creates a new builder-style object to manufacture ListJobsInput
An optional filter that lets you search for jobs that have the specified status.
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.
The maximum number of results to return per request.
The token to retrieve the next set of results.
A filter that limits the returned jobs to those for the specified group.
A filter that limits the returned jobs to those for the specified group.
The namespace used to indicate that a job is a customer-managed job.
When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.
$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/
The namespaceId
feature is in public preview.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListJobsInput
impl Send for ListJobsInput
impl Sync for ListJobsInput
impl Unpin for ListJobsInput
impl UnwindSafe for ListJobsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more