Struct aws_sdk_m2::operation::list_data_sets::ListDataSetsInput
source · #[non_exhaustive]pub struct ListDataSetsInput {
pub application_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub prefix: Option<String>,
pub name_filter: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.application_id: Option<String>The unique identifier of the application for which you want to list the associated data sets.
next_token: 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.
max_results: Option<i32>The maximum number of objects to return.
prefix: Option<String>The prefix of the data set name, which you can use to filter the list of data sets.
name_filter: Option<String>Filter dataset name matching the specified pattern. Can use * and % as wild cards.
Implementations§
source§impl ListDataSetsInput
impl ListDataSetsInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The unique identifier of the application for which you want to list the associated data sets.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of objects to return.
sourcepub fn prefix(&self) -> Option<&str>
pub fn prefix(&self) -> Option<&str>
The prefix of the data set name, which you can use to filter the list of data sets.
sourcepub fn name_filter(&self) -> Option<&str>
pub fn name_filter(&self) -> Option<&str>
Filter dataset name matching the specified pattern. Can use * and % as wild cards.
source§impl ListDataSetsInput
impl ListDataSetsInput
sourcepub fn builder() -> ListDataSetsInputBuilder
pub fn builder() -> ListDataSetsInputBuilder
Creates a new builder-style object to manufacture ListDataSetsInput.
Trait Implementations§
source§impl Clone for ListDataSetsInput
impl Clone for ListDataSetsInput
source§fn clone(&self) -> ListDataSetsInput
fn clone(&self) -> ListDataSetsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDataSetsInput
impl Debug for ListDataSetsInput
source§impl PartialEq for ListDataSetsInput
impl PartialEq for ListDataSetsInput
source§fn eq(&self, other: &ListDataSetsInput) -> bool
fn eq(&self, other: &ListDataSetsInput) -> bool
self and other values to be equal, and is used
by ==.