Struct aws_sdk_m2::types::builders::DataSetSummaryBuilder
source · #[non_exhaustive]pub struct DataSetSummaryBuilder { /* private fields */ }Expand description
A builder for DataSetSummary.
Implementations§
source§impl DataSetSummaryBuilder
impl DataSetSummaryBuilder
sourcepub fn data_set_name(self, input: impl Into<String>) -> Self
pub fn data_set_name(self, input: impl Into<String>) -> Self
The name of the data set.
sourcepub fn set_data_set_name(self, input: Option<String>) -> Self
pub fn set_data_set_name(self, input: Option<String>) -> Self
The name of the data set.
sourcepub fn data_set_org(self, input: impl Into<String>) -> Self
pub fn data_set_org(self, input: impl Into<String>) -> Self
The type of data set. The only supported value is VSAM.
sourcepub fn set_data_set_org(self, input: Option<String>) -> Self
pub fn set_data_set_org(self, input: Option<String>) -> Self
The type of data set. The only supported value is VSAM.
sourcepub fn set_format(self, input: Option<String>) -> Self
pub fn set_format(self, input: Option<String>) -> Self
The format of the data set.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The timestamp when the data set was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The timestamp when the data set was created.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The last time the data set was updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
The last time the data set was updated.
sourcepub fn last_referenced_time(self, input: DateTime) -> Self
pub fn last_referenced_time(self, input: DateTime) -> Self
The last time the data set was referenced.
sourcepub fn set_last_referenced_time(self, input: Option<DateTime>) -> Self
pub fn set_last_referenced_time(self, input: Option<DateTime>) -> Self
The last time the data set was referenced.
sourcepub fn build(self) -> DataSetSummary
pub fn build(self) -> DataSetSummary
Consumes the builder and constructs a DataSetSummary.
Trait Implementations§
source§impl Clone for DataSetSummaryBuilder
impl Clone for DataSetSummaryBuilder
source§fn clone(&self) -> DataSetSummaryBuilder
fn clone(&self) -> DataSetSummaryBuilder
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 DataSetSummaryBuilder
impl Debug for DataSetSummaryBuilder
source§impl Default for DataSetSummaryBuilder
impl Default for DataSetSummaryBuilder
source§fn default() -> DataSetSummaryBuilder
fn default() -> DataSetSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DataSetSummaryBuilder> for DataSetSummaryBuilder
impl PartialEq<DataSetSummaryBuilder> for DataSetSummaryBuilder
source§fn eq(&self, other: &DataSetSummaryBuilder) -> bool
fn eq(&self, other: &DataSetSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataSetSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DataSetSummaryBuilder
impl Send for DataSetSummaryBuilder
impl Sync for DataSetSummaryBuilder
impl Unpin for DataSetSummaryBuilder
impl UnwindSafe for DataSetSummaryBuilder
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