#[non_exhaustive]pub struct ListDataQualityStatisticsInputBuilder { /* private fields */ }Expand description
A builder for ListDataQualityStatisticsInput.
Implementations§
Source§impl ListDataQualityStatisticsInputBuilder
impl ListDataQualityStatisticsInputBuilder
Sourcepub fn statistic_id(self, input: impl Into<String>) -> Self
pub fn statistic_id(self, input: impl Into<String>) -> Self
The Statistic ID.
Sourcepub fn set_statistic_id(self, input: Option<String>) -> Self
pub fn set_statistic_id(self, input: Option<String>) -> Self
The Statistic ID.
Sourcepub fn get_statistic_id(&self) -> &Option<String>
pub fn get_statistic_id(&self) -> &Option<String>
The Statistic ID.
Sourcepub fn profile_id(self, input: impl Into<String>) -> Self
pub fn profile_id(self, input: impl Into<String>) -> Self
The Profile ID.
Sourcepub fn set_profile_id(self, input: Option<String>) -> Self
pub fn set_profile_id(self, input: Option<String>) -> Self
The Profile ID.
Sourcepub fn get_profile_id(&self) -> &Option<String>
pub fn get_profile_id(&self) -> &Option<String>
The Profile ID.
Sourcepub fn timestamp_filter(self, input: TimestampFilter) -> Self
pub fn timestamp_filter(self, input: TimestampFilter) -> Self
A timestamp filter.
Sourcepub fn set_timestamp_filter(self, input: Option<TimestampFilter>) -> Self
pub fn set_timestamp_filter(self, input: Option<TimestampFilter>) -> Self
A timestamp filter.
Sourcepub fn get_timestamp_filter(&self) -> &Option<TimestampFilter>
pub fn get_timestamp_filter(&self) -> &Option<TimestampFilter>
A timestamp filter.
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 next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A pagination token to request the next page of results.
Sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A pagination token to request the next page of results.
Sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A pagination token to request the next page of results.
Sourcepub fn build(self) -> Result<ListDataQualityStatisticsInput, BuildError>
pub fn build(self) -> Result<ListDataQualityStatisticsInput, BuildError>
Consumes the builder and constructs a ListDataQualityStatisticsInput.
Source§impl ListDataQualityStatisticsInputBuilder
impl ListDataQualityStatisticsInputBuilder
Sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListDataQualityStatisticsOutput, SdkError<ListDataQualityStatisticsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListDataQualityStatisticsOutput, SdkError<ListDataQualityStatisticsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
Source§impl Clone for ListDataQualityStatisticsInputBuilder
impl Clone for ListDataQualityStatisticsInputBuilder
Source§fn clone(&self) -> ListDataQualityStatisticsInputBuilder
fn clone(&self) -> ListDataQualityStatisticsInputBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ListDataQualityStatisticsInputBuilder
impl Default for ListDataQualityStatisticsInputBuilder
Source§fn default() -> ListDataQualityStatisticsInputBuilder
fn default() -> ListDataQualityStatisticsInputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListDataQualityStatisticsInputBuilder
impl PartialEq for ListDataQualityStatisticsInputBuilder
Source§fn eq(&self, other: &ListDataQualityStatisticsInputBuilder) -> bool
fn eq(&self, other: &ListDataQualityStatisticsInputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListDataQualityStatisticsInputBuilder
Auto Trait Implementations§
impl Freeze for ListDataQualityStatisticsInputBuilder
impl RefUnwindSafe for ListDataQualityStatisticsInputBuilder
impl Send for ListDataQualityStatisticsInputBuilder
impl Sync for ListDataQualityStatisticsInputBuilder
impl Unpin for ListDataQualityStatisticsInputBuilder
impl UnsafeUnpin for ListDataQualityStatisticsInputBuilder
impl UnwindSafe for ListDataQualityStatisticsInputBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.