#[non_exhaustive]pub struct ListDatasetContentsInput { /* private fields */ }
Implementations§
source§impl ListDatasetContentsInput
impl ListDatasetContentsInput
sourcepub fn dataset_name(&self) -> Option<&str>
pub fn dataset_name(&self) -> Option<&str>
The name of the dataset whose contents information you want to list.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in this request.
sourcepub fn scheduled_on_or_after(&self) -> Option<&DateTime>
pub fn scheduled_on_or_after(&self) -> Option<&DateTime>
A filter to limit results to those dataset contents whose creation is scheduled on or after the given time. See the field triggers.schedule
in the CreateDataset
request. (timestamp)
sourcepub fn scheduled_before(&self) -> Option<&DateTime>
pub fn scheduled_before(&self) -> Option<&DateTime>
A filter to limit results to those dataset contents whose creation is scheduled before the given time. See the field triggers.schedule
in the CreateDataset
request. (timestamp)
source§impl ListDatasetContentsInput
impl ListDatasetContentsInput
sourcepub fn builder() -> ListDatasetContentsInputBuilder
pub fn builder() -> ListDatasetContentsInputBuilder
Creates a new builder-style object to manufacture ListDatasetContentsInput
.
source§impl ListDatasetContentsInput
impl ListDatasetContentsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDatasetContents, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListDatasetContents, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListDatasetContents
>
Trait Implementations§
source§impl Clone for ListDatasetContentsInput
impl Clone for ListDatasetContentsInput
source§fn clone(&self) -> ListDatasetContentsInput
fn clone(&self) -> ListDatasetContentsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListDatasetContentsInput
impl Debug for ListDatasetContentsInput
source§impl PartialEq<ListDatasetContentsInput> for ListDatasetContentsInput
impl PartialEq<ListDatasetContentsInput> for ListDatasetContentsInput
source§fn eq(&self, other: &ListDatasetContentsInput) -> bool
fn eq(&self, other: &ListDatasetContentsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListDatasetContentsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListDatasetContentsInput
impl Send for ListDatasetContentsInput
impl Sync for ListDatasetContentsInput
impl Unpin for ListDatasetContentsInput
impl UnwindSafe for ListDatasetContentsInput
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
Mutably borrows from an owned value. Read more