Struct aws_sdk_iotanalytics::operation::list_dataset_contents::builders::ListDatasetContentsInputBuilder
source · #[non_exhaustive]pub struct ListDatasetContentsInputBuilder { /* private fields */ }Expand description
A builder for ListDatasetContentsInput.
Implementations§
source§impl ListDatasetContentsInputBuilder
impl ListDatasetContentsInputBuilder
sourcepub fn dataset_name(self, input: impl Into<String>) -> Self
pub fn dataset_name(self, input: impl Into<String>) -> Self
The name of the dataset whose contents information you want to list.
This field is required.sourcepub fn set_dataset_name(self, input: Option<String>) -> Self
pub fn set_dataset_name(self, input: Option<String>) -> Self
The name of the dataset whose contents information you want to list.
sourcepub fn get_dataset_name(&self) -> &Option<String>
pub fn get_dataset_name(&self) -> &Option<String>
The name of the dataset whose contents information you want to list.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token for the next set of results.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in this request.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in this request.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in this request.
sourcepub fn scheduled_on_or_after(self, input: DateTime) -> Self
pub fn scheduled_on_or_after(self, input: DateTime) -> Self
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 set_scheduled_on_or_after(self, input: Option<DateTime>) -> Self
pub fn set_scheduled_on_or_after(self, input: Option<DateTime>) -> Self
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 get_scheduled_on_or_after(&self) -> &Option<DateTime>
pub fn get_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, input: DateTime) -> Self
pub fn scheduled_before(self, input: DateTime) -> Self
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)
sourcepub fn set_scheduled_before(self, input: Option<DateTime>) -> Self
pub fn set_scheduled_before(self, input: Option<DateTime>) -> Self
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)
sourcepub fn get_scheduled_before(&self) -> &Option<DateTime>
pub fn get_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)
sourcepub fn build(self) -> Result<ListDatasetContentsInput, BuildError>
pub fn build(self) -> Result<ListDatasetContentsInput, BuildError>
Consumes the builder and constructs a ListDatasetContentsInput.
source§impl ListDatasetContentsInputBuilder
impl ListDatasetContentsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListDatasetContentsOutput, SdkError<ListDatasetContentsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListDatasetContentsOutput, SdkError<ListDatasetContentsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListDatasetContentsInputBuilder
impl Clone for ListDatasetContentsInputBuilder
source§fn clone(&self) -> ListDatasetContentsInputBuilder
fn clone(&self) -> ListDatasetContentsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListDatasetContentsInputBuilder
impl Default for ListDatasetContentsInputBuilder
source§fn default() -> ListDatasetContentsInputBuilder
fn default() -> ListDatasetContentsInputBuilder
source§impl PartialEq for ListDatasetContentsInputBuilder
impl PartialEq for ListDatasetContentsInputBuilder
source§fn eq(&self, other: &ListDatasetContentsInputBuilder) -> bool
fn eq(&self, other: &ListDatasetContentsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListDatasetContentsInputBuilder
Auto Trait Implementations§
impl Freeze for ListDatasetContentsInputBuilder
impl RefUnwindSafe for ListDatasetContentsInputBuilder
impl Send for ListDatasetContentsInputBuilder
impl Sync for ListDatasetContentsInputBuilder
impl Unpin for ListDatasetContentsInputBuilder
impl UnwindSafe for ListDatasetContentsInputBuilder
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> 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