Java com.amazonaws.services.kinesis.model PutRecordRequest fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.kinesis.model PutRecordRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.kinesis.model PutRecordRequest.

The text is from its open source code.

Constructor

Method

java.nio.ByteBuffergetData()

The data blob to put into the record, which is base64-encoded when the blob is serialized.

StringgetPartitionKey()

Determines which shard in the stream the data record is assigned to.

StringgetStreamName()

The name of the stream to put the data record into.

voidsetData(java.nio.ByteBuffer data)

The data blob to put into the record, which is base64-encoded when the blob is serialized.

voidsetPartitionKey(String partitionKey)

Determines which shard in the stream the data record is assigned to.

voidsetSequenceNumberForOrdering(String sequenceNumberForOrdering)

Guarantees strictly increasing sequence numbers, for puts from the same client and to the same partition key.

voidsetStreamName(String streamName)

The name of the stream to put the data record into.