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 for ListJobsInputBuilder
impl PartialEq 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 ==
.impl StructuralPartialEq for ListJobsInputBuilder
Auto Trait Implementations§
impl Freeze for ListJobsInputBuilder
impl RefUnwindSafe for ListJobsInputBuilder
impl Send for ListJobsInputBuilder
impl Sync for ListJobsInputBuilder
impl Unpin for ListJobsInputBuilder
impl UnwindSafe for ListJobsInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more