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 ==.impl StructuralPartialEq for ListDataSetsInput
Auto Trait Implementations§
impl Freeze for ListDataSetsInput
impl RefUnwindSafe for ListDataSetsInput
impl Send for ListDataSetsInput
impl Sync for ListDataSetsInput
impl Unpin for ListDataSetsInput
impl UnwindSafe for ListDataSetsInput
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