Interface Record.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Record.Builder,Record>
,SdkBuilder<Record.Builder,Record>
,SdkPojo
- Enclosing class:
- Record
public static interface Record.Builder extends SdkPojo, CopyableBuilder<Record.Builder,Record>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Record.Builder
approximateArrivalTimestamp(Instant approximateArrivalTimestamp)
The approximate time that the record was inserted into the stream.Record.Builder
data(SdkBytes data)
The data blob.Record.Builder
encryptionType(String encryptionType)
The encryption type used on the record.Record.Builder
encryptionType(EncryptionType encryptionType)
The encryption type used on the record.Record.Builder
partitionKey(String partitionKey)
Identifies which shard in the stream the data record is assigned to.Record.Builder
sequenceNumber(String sequenceNumber)
The unique identifier of the record within its shard.-
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
-
sequenceNumber
Record.Builder sequenceNumber(String sequenceNumber)
The unique identifier of the record within its shard.
- Parameters:
sequenceNumber
- The unique identifier of the record within its shard.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
approximateArrivalTimestamp
Record.Builder approximateArrivalTimestamp(Instant approximateArrivalTimestamp)
The approximate time that the record was inserted into the stream.
- Parameters:
approximateArrivalTimestamp
- The approximate time that the record was inserted into the stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
Record.Builder data(SdkBytes data)
The data blob. The data in the blob is both opaque and immutable to Kinesis Data Streams, which does not inspect, interpret, or change the data in the blob in any way. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MiB).
- Parameters:
data
- The data blob. The data in the blob is both opaque and immutable to Kinesis Data Streams, which does not inspect, interpret, or change the data in the blob in any way. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MiB).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partitionKey
Record.Builder partitionKey(String partitionKey)
Identifies which shard in the stream the data record is assigned to.
- Parameters:
partitionKey
- Identifies which shard in the stream the data record is assigned to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionType
Record.Builder encryptionType(String encryptionType)
The encryption type used on the record. This parameter can be one of the following values:
-
NONE
: Do not encrypt the records in the stream. -
KMS
: Use server-side encryption on the records in the stream using a customer-managed Amazon Web Services KMS key.
- Parameters:
encryptionType
- The encryption type used on the record. This parameter can be one of the following values:-
NONE
: Do not encrypt the records in the stream. -
KMS
: Use server-side encryption on the records in the stream using a customer-managed Amazon Web Services KMS key.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncryptionType
,EncryptionType
-
-
encryptionType
Record.Builder encryptionType(EncryptionType encryptionType)
The encryption type used on the record. This parameter can be one of the following values:
-
NONE
: Do not encrypt the records in the stream. -
KMS
: Use server-side encryption on the records in the stream using a customer-managed Amazon Web Services KMS key.
- Parameters:
encryptionType
- The encryption type used on the record. This parameter can be one of the following values:-
NONE
: Do not encrypt the records in the stream. -
KMS
: Use server-side encryption on the records in the stream using a customer-managed Amazon Web Services KMS key.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EncryptionType
,EncryptionType
-
-
-