Struct aws_sdk_databrew::operation::list_jobs::builders::ListJobsInputBuilder
source · #[non_exhaustive]pub struct ListJobsInputBuilder { /* private fields */ }
Expand description
A builder for ListJobsInput
.
Implementations§
source§impl ListJobsInputBuilder
impl ListJobsInputBuilder
sourcepub fn dataset_name(self, input: impl Into<String>) -> Self
pub fn dataset_name(self, input: impl Into<String>) -> Self
The name of a dataset. Using this parameter indicates to return only those jobs that act on the specified dataset.
sourcepub fn set_dataset_name(self, input: Option<String>) -> Self
pub fn set_dataset_name(self, input: Option<String>) -> Self
The name of a dataset. Using this parameter indicates to return only those jobs that act on the specified dataset.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in this request.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in this request.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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.
sourcepub fn project_name(self, input: impl Into<String>) -> Self
pub fn project_name(self, input: impl Into<String>) -> Self
The name of a project. Using this parameter indicates to return only those jobs that are associated with the specified project.
sourcepub fn set_project_name(self, input: Option<String>) -> Self
pub fn set_project_name(self, input: Option<String>) -> Self
The name of a project. Using this parameter indicates to return only those jobs that are associated with the specified project.
sourcepub fn build(self) -> Result<ListJobsInput, BuildError>
pub fn build(self) -> Result<ListJobsInput, BuildError>
Consumes the builder and constructs a ListJobsInput
.
Trait Implementations§
source§impl Clone for ListJobsInputBuilder
impl Clone for ListJobsInputBuilder
source§fn clone(&self) -> ListJobsInputBuilder
fn clone(&self) -> ListJobsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListJobsInputBuilder
impl Debug for ListJobsInputBuilder
source§impl Default for ListJobsInputBuilder
impl Default for ListJobsInputBuilder
source§fn default() -> ListJobsInputBuilder
fn default() -> ListJobsInputBuilder
source§impl PartialEq<ListJobsInputBuilder> for ListJobsInputBuilder
impl PartialEq<ListJobsInputBuilder> for ListJobsInputBuilder
source§fn eq(&self, other: &ListJobsInputBuilder) -> bool
fn eq(&self, other: &ListJobsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.