Interface VsamDetailAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VsamDetailAttributes.Builder,VsamDetailAttributes>,SdkBuilder<VsamDetailAttributes.Builder,VsamDetailAttributes>,SdkPojo
- Enclosing class:
- VsamDetailAttributes
public static interface VsamDetailAttributes.Builder extends SdkPojo, CopyableBuilder<VsamDetailAttributes.Builder,VsamDetailAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VsamDetailAttributes.BuilderalternateKeys(Collection<AlternateKey> alternateKeys)The alternate key definitions, if any.VsamDetailAttributes.BuilderalternateKeys(Consumer<AlternateKey.Builder>... alternateKeys)The alternate key definitions, if any.VsamDetailAttributes.BuilderalternateKeys(AlternateKey... alternateKeys)The alternate key definitions, if any.VsamDetailAttributes.BuildercacheAtStartup(Boolean cacheAtStartup)If set to True, enforces loading the data set into cache before it’s used by the application.VsamDetailAttributes.Buildercompressed(Boolean compressed)Indicates whether indexes for this dataset are stored as compressed values.VsamDetailAttributes.Builderencoding(String encoding)The character set used by the data set.default VsamDetailAttributes.BuilderprimaryKey(Consumer<PrimaryKey.Builder> primaryKey)The primary key of the data set.VsamDetailAttributes.BuilderprimaryKey(PrimaryKey primaryKey)The primary key of the data set.VsamDetailAttributes.BuilderrecordFormat(String recordFormat)The record format of the data set.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
alternateKeys
VsamDetailAttributes.Builder alternateKeys(Collection<AlternateKey> alternateKeys)
The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
- Parameters:
alternateKeys- The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
alternateKeys
VsamDetailAttributes.Builder alternateKeys(AlternateKey... alternateKeys)
The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
- Parameters:
alternateKeys- The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
alternateKeys
VsamDetailAttributes.Builder alternateKeys(Consumer<AlternateKey.Builder>... alternateKeys)
The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
This is a convenience method that creates an instance of theAlternateKey.Builderavoiding the need to create one manually viaAlternateKey.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#alternateKeys(List.) - Parameters:
alternateKeys- a consumer that will call methods onAlternateKey.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#alternateKeys(java.util.Collection)
-
cacheAtStartup
VsamDetailAttributes.Builder cacheAtStartup(Boolean cacheAtStartup)
If set to True, enforces loading the data set into cache before it’s used by the application.
- Parameters:
cacheAtStartup- If set to True, enforces loading the data set into cache before it’s used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
compressed
VsamDetailAttributes.Builder compressed(Boolean compressed)
Indicates whether indexes for this dataset are stored as compressed values. If you have a large data set (typically > 100 Mb), consider setting this flag to True.
- Parameters:
compressed- Indicates whether indexes for this dataset are stored as compressed values. If you have a large data set (typically > 100 Mb), consider setting this flag to True.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encoding
VsamDetailAttributes.Builder encoding(String encoding)
The character set used by the data set. Can be ASCII, EBCDIC, or unknown.
- Parameters:
encoding- The character set used by the data set. Can be ASCII, EBCDIC, or unknown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primaryKey
VsamDetailAttributes.Builder primaryKey(PrimaryKey primaryKey)
The primary key of the data set.
- Parameters:
primaryKey- The primary key of the data set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primaryKey
default VsamDetailAttributes.Builder primaryKey(Consumer<PrimaryKey.Builder> primaryKey)
The primary key of the data set.
This is a convenience method that creates an instance of thePrimaryKey.Builderavoiding the need to create one manually viaPrimaryKey.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprimaryKey(PrimaryKey).- Parameters:
primaryKey- a consumer that will call methods onPrimaryKey.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
primaryKey(PrimaryKey)
-
recordFormat
VsamDetailAttributes.Builder recordFormat(String recordFormat)
The record format of the data set.
- Parameters:
recordFormat- The record format of the data set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-