#[non_exhaustive]pub struct DatasetContentSummaryBuilder { /* private fields */ }
Expand description
A builder for DatasetContentSummary
.
Implementations§
source§impl DatasetContentSummaryBuilder
impl DatasetContentSummaryBuilder
sourcepub fn set_version(self, input: Option<String>) -> Self
pub fn set_version(self, input: Option<String>) -> Self
The version of the dataset contents.
sourcepub fn status(self, input: DatasetContentStatus) -> Self
pub fn status(self, input: DatasetContentStatus) -> Self
The status of the dataset contents.
sourcepub fn set_status(self, input: Option<DatasetContentStatus>) -> Self
pub fn set_status(self, input: Option<DatasetContentStatus>) -> Self
The status of the dataset contents.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The actual time the creation of the dataset contents was started.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The actual time the creation of the dataset contents was started.
sourcepub fn schedule_time(self, input: DateTime) -> Self
pub fn schedule_time(self, input: DateTime) -> Self
The time the creation of the dataset contents was scheduled to start.
sourcepub fn set_schedule_time(self, input: Option<DateTime>) -> Self
pub fn set_schedule_time(self, input: Option<DateTime>) -> Self
The time the creation of the dataset contents was scheduled to start.
sourcepub fn completion_time(self, input: DateTime) -> Self
pub fn completion_time(self, input: DateTime) -> Self
The time the dataset content status was updated to SUCCEEDED or FAILED.
sourcepub fn set_completion_time(self, input: Option<DateTime>) -> Self
pub fn set_completion_time(self, input: Option<DateTime>) -> Self
The time the dataset content status was updated to SUCCEEDED or FAILED.
sourcepub fn build(self) -> DatasetContentSummary
pub fn build(self) -> DatasetContentSummary
Consumes the builder and constructs a DatasetContentSummary
.
Trait Implementations§
source§impl Clone for DatasetContentSummaryBuilder
impl Clone for DatasetContentSummaryBuilder
source§fn clone(&self) -> DatasetContentSummaryBuilder
fn clone(&self) -> DatasetContentSummaryBuilder
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 DatasetContentSummaryBuilder
impl Debug for DatasetContentSummaryBuilder
source§impl Default for DatasetContentSummaryBuilder
impl Default for DatasetContentSummaryBuilder
source§fn default() -> DatasetContentSummaryBuilder
fn default() -> DatasetContentSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DatasetContentSummaryBuilder> for DatasetContentSummaryBuilder
impl PartialEq<DatasetContentSummaryBuilder> for DatasetContentSummaryBuilder
source§fn eq(&self, other: &DatasetContentSummaryBuilder) -> bool
fn eq(&self, other: &DatasetContentSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DatasetContentSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DatasetContentSummaryBuilder
impl Send for DatasetContentSummaryBuilder
impl Sync for DatasetContentSummaryBuilder
impl Unpin for DatasetContentSummaryBuilder
impl UnwindSafe for DatasetContentSummaryBuilder
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