#[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 ==.