Interface AlternateKey.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AlternateKey.Builder,AlternateKey>,SdkBuilder<AlternateKey.Builder,AlternateKey>,SdkPojo
- Enclosing class:
- AlternateKey
public static interface AlternateKey.Builder extends SdkPojo, CopyableBuilder<AlternateKey.Builder,AlternateKey>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AlternateKey.BuilderallowDuplicates(Boolean allowDuplicates)Indicates whether the alternate key values are supposed to be unique for the given data set.AlternateKey.Builderlength(Integer length)A strictly positive integer value representing the length of the alternate key.AlternateKey.Buildername(String name)The name of the alternate key.AlternateKey.Builderoffset(Integer offset)A positive integer value representing the offset to mark the start of the alternate key part in the record byte array.-
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
-
allowDuplicates
AlternateKey.Builder allowDuplicates(Boolean allowDuplicates)
Indicates whether the alternate key values are supposed to be unique for the given data set.
- Parameters:
allowDuplicates- Indicates whether the alternate key values are supposed to be unique for the given data set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
length
AlternateKey.Builder length(Integer length)
A strictly positive integer value representing the length of the alternate key.
- Parameters:
length- A strictly positive integer value representing the length of the alternate key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
AlternateKey.Builder name(String name)
The name of the alternate key.
- Parameters:
name- The name of the alternate key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offset
AlternateKey.Builder offset(Integer offset)
A positive integer value representing the offset to mark the start of the alternate key part in the record byte array.
- Parameters:
offset- A positive integer value representing the offset to mark the start of the alternate key part in the record byte array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-