Struct aws_sdk_m2::operation::get_data_set_details::builders::GetDataSetDetailsOutputBuilder
source · #[non_exhaustive]pub struct GetDataSetDetailsOutputBuilder { /* private fields */ }Expand description
A builder for GetDataSetDetailsOutput.
Implementations§
source§impl GetDataSetDetailsOutputBuilder
impl GetDataSetDetailsOutputBuilder
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: DatasetDetailOrgAttributes) -> Self
pub fn data_set_org(self, input: DatasetDetailOrgAttributes) -> Self
The type of data set. The only supported value is VSAM.
sourcepub fn set_data_set_org(self, input: Option<DatasetDetailOrgAttributes>) -> Self
pub fn set_data_set_org(self, input: Option<DatasetDetailOrgAttributes>) -> Self
The type of data set. The only supported value is VSAM.
sourcepub fn record_length(self, input: i32) -> Self
pub fn record_length(self, input: i32) -> Self
The length of records in the data set.
sourcepub fn set_record_length(self, input: Option<i32>) -> Self
pub fn set_record_length(self, input: Option<i32>) -> Self
The length of records in the data set.
sourcepub fn location(self, input: impl Into<String>) -> Self
pub fn location(self, input: impl Into<String>) -> Self
The location where the data set is stored.
sourcepub fn set_location(self, input: Option<String>) -> Self
pub fn set_location(self, input: Option<String>) -> Self
The location where the data set is stored.
sourcepub fn set_blocksize(self, input: Option<i32>) -> Self
pub fn set_blocksize(self, input: Option<i32>) -> Self
The size of the block on disk.
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) -> GetDataSetDetailsOutput
pub fn build(self) -> GetDataSetDetailsOutput
Consumes the builder and constructs a GetDataSetDetailsOutput.
Trait Implementations§
source§impl Clone for GetDataSetDetailsOutputBuilder
impl Clone for GetDataSetDetailsOutputBuilder
source§fn clone(&self) -> GetDataSetDetailsOutputBuilder
fn clone(&self) -> GetDataSetDetailsOutputBuilder
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 Default for GetDataSetDetailsOutputBuilder
impl Default for GetDataSetDetailsOutputBuilder
source§fn default() -> GetDataSetDetailsOutputBuilder
fn default() -> GetDataSetDetailsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetDataSetDetailsOutputBuilder> for GetDataSetDetailsOutputBuilder
impl PartialEq<GetDataSetDetailsOutputBuilder> for GetDataSetDetailsOutputBuilder
source§fn eq(&self, other: &GetDataSetDetailsOutputBuilder) -> bool
fn eq(&self, other: &GetDataSetDetailsOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetDataSetDetailsOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetDataSetDetailsOutputBuilder
impl Send for GetDataSetDetailsOutputBuilder
impl Sync for GetDataSetDetailsOutputBuilder
impl Unpin for GetDataSetDetailsOutputBuilder
impl UnwindSafe for GetDataSetDetailsOutputBuilder
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