Interface PrimaryKey.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PrimaryKey.Builder,PrimaryKey>,SdkBuilder<PrimaryKey.Builder,PrimaryKey>,SdkPojo
- Enclosing class:
- PrimaryKey
public static interface PrimaryKey.Builder extends SdkPojo, CopyableBuilder<PrimaryKey.Builder,PrimaryKey>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrimaryKey.Builderlength(Integer length)A strictly positive integer value representing the length of the primary key.PrimaryKey.Buildername(String name)A name for the Primary Key.PrimaryKey.Builderoffset(Integer offset)A positive integer value representing the offset to mark the start of the primary key 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
-
length
PrimaryKey.Builder length(Integer length)
A strictly positive integer value representing the length of the primary key.
- Parameters:
length- A strictly positive integer value representing the length of the primary key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
PrimaryKey.Builder name(String name)
A name for the Primary Key.
- Parameters:
name- A name for the Primary Key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offset
PrimaryKey.Builder offset(Integer offset)
A positive integer value representing the offset to mark the start of the primary key in the record byte array.
- Parameters:
offset- A positive integer value representing the offset to mark the start of the primary key in the record byte array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-