#[non_exhaustive]pub struct ListDatasetContentsInput {
pub dataset_name: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub scheduled_on_or_after: Option<DateTime>,
pub scheduled_before: Option<DateTime>,
}
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.dataset_name: Option<String>
The name of the dataset whose contents information you want to list.
next_token: Option<String>
The token for the next set of results.
max_results: Option<i32>
The maximum number of results to return in this request.
scheduled_on_or_after: 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)
scheduled_before: 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)
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
.
Trait Implementations§
source§impl Clone for ListDatasetContentsInput
impl Clone for ListDatasetContentsInput
source§fn clone(&self) -> ListDatasetContentsInput
fn clone(&self) -> ListDatasetContentsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListDatasetContentsInput
impl Debug for ListDatasetContentsInput
source§impl PartialEq for ListDatasetContentsInput
impl PartialEq for ListDatasetContentsInput
source§fn eq(&self, other: &ListDatasetContentsInput) -> bool
fn eq(&self, other: &ListDatasetContentsInput) -> bool
self
and other
values to be equal, and is used
by ==
.