class AmazonKinesis extends AnyRef
- Self Type
- AmazonKinesis with PutRecordAction
- Alphabetic
- By Inheritance
- AmazonKinesis
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new AmazonKinesis(client: com.amazonaws.services.kinesis.AmazonKinesis)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def putRecord(request: PutRecordRequest): Either[Throwable, PutRecordResult]
Writes a single data record from a producer into an Amazon Kinesis stream.
Writes a single data record from a producer into an Amazon Kinesis stream.
Note: This method does not perform retry processing.
- request
Represents the input for PutRecord
- returns
Right is result of the PutRecord operation on success. Left is the occurred error on failure.
- def putRecordWithRetry(request: PutRecordRequest): Either[Throwable, PutRecordResult]
Writes a single data record from a producer into an Amazon Kinesis stream.
Writes a single data record from a producer into an Amazon Kinesis stream.
Note: This method does perform retry processing. Max retry count is 3 (SDK default).
- request
Represents the input for PutRecord
- returns
Right is result of the PutRecord operation on success. Left is the occurred error on failure.
- def putRecords(request: PutRecordsRequest): Seq[Either[PutRecordsResultEntry, PutRecordsResultEntry]]
Writes multiple data records from a producer into an Amazon Kinesis stream in a single call.
Writes multiple data records from a producer into an Amazon Kinesis stream in a single call. The response Records sequence always includes the same number of records as the request sequence by same ordering.
Note: This method does not perform retry processing.
- request
Represents the input for PutRecords
- returns
each record result. Right is result of the PutRecords operation on success. Left is the occurred error on failure.
- def putRecordsWithRetry(request: PutRecordsRequest): Seq[Either[PutRecordsResultEntry, PutRecordsResultEntry]]
Writes multiple data records from a producer into an Amazon Kinesis stream in a single call.
Writes multiple data records from a producer into an Amazon Kinesis stream in a single call. The response Records sequence always includes the same number of records as the request sequence by same ordering.
Note: This method does perform retry processing. Max retry count is 3 (SDK default).
- request
Represents the input for PutRecords
- returns
each record result. Right is result of the PutRecords operation on success. Left is the occurred error on failure.
- def shutdown(): Unit
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()