Struct aws_sdk_m2::types::builders::DataSetBuilder
source · #[non_exhaustive]pub struct DataSetBuilder { /* private fields */ }Expand description
A builder for DataSet.
Implementations§
source§impl DataSetBuilder
impl DataSetBuilder
sourcepub fn storage_type(self, input: impl Into<String>) -> Self
pub fn storage_type(self, input: impl Into<String>) -> Self
The storage type of the data set: database or file system. For Micro Focus, database corresponds to datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and database corresponds to Blusam.
sourcepub fn set_storage_type(self, input: Option<String>) -> Self
pub fn set_storage_type(self, input: Option<String>) -> Self
The storage type of the data set: database or file system. For Micro Focus, database corresponds to datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and database corresponds to Blusam.
sourcepub fn get_storage_type(&self) -> &Option<String>
pub fn get_storage_type(&self) -> &Option<String>
The storage type of the data set: database or file system. For Micro Focus, database corresponds to datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and database corresponds to Blusam.
sourcepub fn dataset_name(self, input: impl Into<String>) -> Self
pub fn dataset_name(self, input: impl Into<String>) -> Self
The logical identifier for a specific data set (in mainframe format).
This field is required.sourcepub fn set_dataset_name(self, input: Option<String>) -> Self
pub fn set_dataset_name(self, input: Option<String>) -> Self
The logical identifier for a specific data set (in mainframe format).
sourcepub fn get_dataset_name(&self) -> &Option<String>
pub fn get_dataset_name(&self) -> &Option<String>
The logical identifier for a specific data set (in mainframe format).
sourcepub fn dataset_org(self, input: DatasetOrgAttributes) -> Self
pub fn dataset_org(self, input: DatasetOrgAttributes) -> Self
The type of dataset. The only supported value is VSAM.
This field is required.sourcepub fn set_dataset_org(self, input: Option<DatasetOrgAttributes>) -> Self
pub fn set_dataset_org(self, input: Option<DatasetOrgAttributes>) -> Self
The type of dataset. The only supported value is VSAM.
sourcepub fn get_dataset_org(&self) -> &Option<DatasetOrgAttributes>
pub fn get_dataset_org(&self) -> &Option<DatasetOrgAttributes>
The type of dataset. The only supported value is VSAM.
sourcepub fn relative_path(self, input: impl Into<String>) -> Self
pub fn relative_path(self, input: impl Into<String>) -> Self
The relative location of the data set in the database or file system.
sourcepub fn set_relative_path(self, input: Option<String>) -> Self
pub fn set_relative_path(self, input: Option<String>) -> Self
The relative location of the data set in the database or file system.
sourcepub fn get_relative_path(&self) -> &Option<String>
pub fn get_relative_path(&self) -> &Option<String>
The relative location of the data set in the database or file system.
sourcepub fn record_length(self, input: RecordLength) -> Self
pub fn record_length(self, input: RecordLength) -> Self
The length of a record.
This field is required.sourcepub fn set_record_length(self, input: Option<RecordLength>) -> Self
pub fn set_record_length(self, input: Option<RecordLength>) -> Self
The length of a record.
sourcepub fn get_record_length(&self) -> &Option<RecordLength>
pub fn get_record_length(&self) -> &Option<RecordLength>
The length of a record.
Trait Implementations§
source§impl Clone for DataSetBuilder
impl Clone for DataSetBuilder
source§fn clone(&self) -> DataSetBuilder
fn clone(&self) -> DataSetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DataSetBuilder
impl Debug for DataSetBuilder
source§impl Default for DataSetBuilder
impl Default for DataSetBuilder
source§fn default() -> DataSetBuilder
fn default() -> DataSetBuilder
source§impl PartialEq for DataSetBuilder
impl PartialEq for DataSetBuilder
source§fn eq(&self, other: &DataSetBuilder) -> bool
fn eq(&self, other: &DataSetBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataSetBuilder
Auto Trait Implementations§
impl Freeze for DataSetBuilder
impl RefUnwindSafe for DataSetBuilder
impl Send for DataSetBuilder
impl Sync for DataSetBuilder
impl Unpin for DataSetBuilder
impl UnwindSafe for DataSetBuilder
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