#[non_exhaustive]pub struct DatasetUpdateSummaryBuilder { /* private fields */ }Expand description
A builder for DatasetUpdateSummary.
Implementations§
source§impl DatasetUpdateSummaryBuilder
impl DatasetUpdateSummaryBuilder
sourcepub fn schema_arn(self, input: impl Into<String>) -> Self
pub fn schema_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.
sourcepub fn set_schema_arn(self, input: Option<String>) -> Self
pub fn set_schema_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.
sourcepub fn get_schema_arn(&self) -> &Option<String>
pub fn get_schema_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
The status of the dataset update.
sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
The status of the dataset update.
sourcepub fn failure_reason(self, input: impl Into<String>) -> Self
pub fn failure_reason(self, input: impl Into<String>) -> Self
If updating a dataset fails, provides the reason why.
sourcepub fn set_failure_reason(self, input: Option<String>) -> Self
pub fn set_failure_reason(self, input: Option<String>) -> Self
If updating a dataset fails, provides the reason why.
sourcepub fn get_failure_reason(&self) -> &Option<String>
pub fn get_failure_reason(&self) -> &Option<String>
If updating a dataset fails, provides the reason why.
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The creation date and time (in Unix time) of the dataset update.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The creation date and time (in Unix time) of the dataset update.
sourcepub fn get_creation_date_time(&self) -> &Option<DateTime>
pub fn get_creation_date_time(&self) -> &Option<DateTime>
The creation date and time (in Unix time) of the dataset update.
sourcepub fn last_updated_date_time(self, input: DateTime) -> Self
pub fn last_updated_date_time(self, input: DateTime) -> Self
The last update date and time (in Unix time) of the dataset.
sourcepub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
The last update date and time (in Unix time) of the dataset.
sourcepub fn get_last_updated_date_time(&self) -> &Option<DateTime>
pub fn get_last_updated_date_time(&self) -> &Option<DateTime>
The last update date and time (in Unix time) of the dataset.
sourcepub fn build(self) -> DatasetUpdateSummary
pub fn build(self) -> DatasetUpdateSummary
Consumes the builder and constructs a DatasetUpdateSummary.
Trait Implementations§
source§impl Clone for DatasetUpdateSummaryBuilder
impl Clone for DatasetUpdateSummaryBuilder
source§fn clone(&self) -> DatasetUpdateSummaryBuilder
fn clone(&self) -> DatasetUpdateSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DatasetUpdateSummaryBuilder
impl Debug for DatasetUpdateSummaryBuilder
source§impl Default for DatasetUpdateSummaryBuilder
impl Default for DatasetUpdateSummaryBuilder
source§fn default() -> DatasetUpdateSummaryBuilder
fn default() -> DatasetUpdateSummaryBuilder
source§impl PartialEq for DatasetUpdateSummaryBuilder
impl PartialEq for DatasetUpdateSummaryBuilder
source§fn eq(&self, other: &DatasetUpdateSummaryBuilder) -> bool
fn eq(&self, other: &DatasetUpdateSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatasetUpdateSummaryBuilder
Auto Trait Implementations§
impl Freeze for DatasetUpdateSummaryBuilder
impl RefUnwindSafe for DatasetUpdateSummaryBuilder
impl Send for DatasetUpdateSummaryBuilder
impl Sync for DatasetUpdateSummaryBuilder
impl Unpin for DatasetUpdateSummaryBuilder
impl UnwindSafe for DatasetUpdateSummaryBuilder
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