Interface DataSet.Builder
- All Superinterfaces:
- Buildable,- CopyableBuilder<DataSet.Builder,,- DataSet> - SdkBuilder<DataSet.Builder,,- DataSet> - SdkPojo
- Enclosing class:
- DataSet
- 
Method SummaryModifier and TypeMethodDescriptiondatasetName(String datasetName) The logical identifier for a specific data set (in mainframe format).default DataSet.BuilderdatasetOrg(Consumer<DatasetOrgAttributes.Builder> datasetOrg) The type of dataset.datasetOrg(DatasetOrgAttributes datasetOrg) The type of dataset.default DataSet.BuilderrecordLength(Consumer<RecordLength.Builder> recordLength) The length of a record.recordLength(RecordLength recordLength) The length of a record.relativePath(String relativePath) The relative location of the data set in the database or file system.storageType(String storageType) The storage type of the data set: database or file system.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
- 
Method Details- 
datasetNameThe logical identifier for a specific data set (in mainframe format). - Parameters:
- datasetName- The logical identifier for a specific data set (in mainframe format).
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
datasetOrgThe type of dataset. The only supported value is VSAM. - Parameters:
- datasetOrg- The type of dataset. The only supported value is VSAM.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
datasetOrgThe type of dataset. The only supported value is VSAM. This is a convenience method that creates an instance of theDatasetOrgAttributes.Builderavoiding the need to create one manually viaDatasetOrgAttributes.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todatasetOrg(DatasetOrgAttributes).- Parameters:
- datasetOrg- a consumer that will call methods on- DatasetOrgAttributes.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
recordLengthThe length of a record. - Parameters:
- recordLength- The length of a record.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
recordLengthThe length of a record. This is a convenience method that creates an instance of theRecordLength.Builderavoiding the need to create one manually viaRecordLength.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torecordLength(RecordLength).- Parameters:
- recordLength- a consumer that will call methods on- RecordLength.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
relativePathThe relative location of the data set in the database or file system. - Parameters:
- relativePath- The relative location of the data set in the database or file system.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
storageTypeThe 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. - Parameters:
- storageType- 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.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 
-