#[non_exhaustive]pub struct ListDataSetsInputBuilder { /* private fields */ }Expand description
A builder for ListDataSetsInput.
Implementations§
source§impl ListDataSetsInputBuilder
impl ListDataSetsInputBuilder
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The unique identifier of the application for which you want to list the associated data sets.
This field is required.sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The unique identifier of the application for which you want to list the associated data sets.
sourcepub fn get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
The unique identifier of the application for which you want to list the associated data sets.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of objects to return.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of objects to return.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of objects to return.
sourcepub fn prefix(self, input: impl Into<String>) -> Self
pub fn prefix(self, input: impl Into<String>) -> Self
The prefix of the data set name, which you can use to filter the list of data sets.
sourcepub fn set_prefix(self, input: Option<String>) -> Self
pub fn set_prefix(self, input: Option<String>) -> Self
The prefix of the data set name, which you can use to filter the list of data sets.
sourcepub fn get_prefix(&self) -> &Option<String>
pub fn get_prefix(&self) -> &Option<String>
The prefix of the data set name, which you can use to filter the list of data sets.
sourcepub fn name_filter(self, input: impl Into<String>) -> Self
pub fn name_filter(self, input: impl Into<String>) -> Self
Filter dataset name matching the specified pattern. Can use * and % as wild cards.
sourcepub fn set_name_filter(self, input: Option<String>) -> Self
pub fn set_name_filter(self, input: Option<String>) -> Self
Filter dataset name matching the specified pattern. Can use * and % as wild cards.
sourcepub fn get_name_filter(&self) -> &Option<String>
pub fn get_name_filter(&self) -> &Option<String>
Filter dataset name matching the specified pattern. Can use * and % as wild cards.
sourcepub fn build(self) -> Result<ListDataSetsInput, BuildError>
pub fn build(self) -> Result<ListDataSetsInput, BuildError>
Consumes the builder and constructs a ListDataSetsInput.
source§impl ListDataSetsInputBuilder
impl ListDataSetsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListDataSetsOutput, SdkError<ListDataSetsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListDataSetsOutput, SdkError<ListDataSetsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListDataSetsInputBuilder
impl Clone for ListDataSetsInputBuilder
source§fn clone(&self) -> ListDataSetsInputBuilder
fn clone(&self) -> ListDataSetsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDataSetsInputBuilder
impl Debug for ListDataSetsInputBuilder
source§impl Default for ListDataSetsInputBuilder
impl Default for ListDataSetsInputBuilder
source§fn default() -> ListDataSetsInputBuilder
fn default() -> ListDataSetsInputBuilder
source§impl PartialEq for ListDataSetsInputBuilder
impl PartialEq for ListDataSetsInputBuilder
source§fn eq(&self, other: &ListDataSetsInputBuilder) -> bool
fn eq(&self, other: &ListDataSetsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListDataSetsInputBuilder
Auto Trait Implementations§
impl Freeze for ListDataSetsInputBuilder
impl RefUnwindSafe for ListDataSetsInputBuilder
impl Send for ListDataSetsInputBuilder
impl Sync for ListDataSetsInputBuilder
impl Unpin for ListDataSetsInputBuilder
impl UnwindSafe for ListDataSetsInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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