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 get_dataset_name(&self) -> &Option<String>
pub fn get_dataset_name(&self) -> &Option<String>
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 get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &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.
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 get_project_name(&self) -> &Option<String>
pub fn get_project_name(&self) -> &Option<String>
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
.
source§impl ListJobsInputBuilder
impl ListJobsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListJobsOutput, SdkError<ListJobsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListJobsOutput, SdkError<ListJobsError, HttpResponse>>
Sends a request with this input using the given client.
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 ==
.