Struct aws_sdk_databrew::input::ListJobsInput
source · [−]#[non_exhaustive]pub struct ListJobsInput {
pub dataset_name: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub project_name: 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.dataset_name: Option<String>
The name of a dataset. Using this parameter indicates to return only those jobs that act on the specified dataset.
max_results: Option<i32>
The maximum number of results to return in this request.
next_token: Option<String>
A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.
project_name: Option<String>
The name of a project. Using this parameter indicates to return only those jobs that are associated with the specified project.
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
The name of a dataset. Using this parameter indicates to return only those jobs that act on the specified dataset.
The maximum number of results to return in this request.
A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.
The name of a project. Using this parameter indicates to return only those jobs that are associated with the specified project.
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