Struct aws_sdk_m2::types::DataSet
source · #[non_exhaustive]pub struct DataSet {
pub storage_type: Option<String>,
pub dataset_name: String,
pub dataset_org: Option<DatasetOrgAttributes>,
pub relative_path: Option<String>,
pub record_length: Option<RecordLength>,
}Expand description
Defines a data set.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.storage_type: 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.
dataset_name: StringThe logical identifier for a specific data set (in mainframe format).
dataset_org: Option<DatasetOrgAttributes>The type of dataset. The only supported value is VSAM.
relative_path: Option<String>The relative location of the data set in the database or file system.
record_length: Option<RecordLength>The length of a record.
Implementations§
source§impl DataSet
impl DataSet
sourcepub fn storage_type(&self) -> Option<&str>
pub fn storage_type(&self) -> Option<&str>
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) -> &str
pub fn dataset_name(&self) -> &str
The logical identifier for a specific data set (in mainframe format).
sourcepub fn dataset_org(&self) -> Option<&DatasetOrgAttributes>
pub fn dataset_org(&self) -> Option<&DatasetOrgAttributes>
The type of dataset. The only supported value is VSAM.
sourcepub fn relative_path(&self) -> Option<&str>
pub fn relative_path(&self) -> Option<&str>
The relative location of the data set in the database or file system.
sourcepub fn record_length(&self) -> Option<&RecordLength>
pub fn record_length(&self) -> Option<&RecordLength>
The length of a record.