PipeSourceDynamoDbStreamParameters

data class PipeSourceDynamoDbStreamParameters(val batchSize: Int? = null, val deadLetterConfig: PipeDeadLetterConfig? = null, val maximumBatchingWindowInSeconds: Int? = null, val maximumRecordAgeInSeconds: Int? = null, val maximumRetryAttempts: Int? = null, val onPartialBatchItemFailure: PipeOnPartialBatchItemFailureStreams? = null, val parallelizationFactor: Int? = null, val startingPosition: PipeDynamoDbStreamStartPosition)

Constructors

Link copied to clipboard
constructor(batchSize: Int? = null, deadLetterConfig: PipeDeadLetterConfig? = null, maximumBatchingWindowInSeconds: Int? = null, maximumRecordAgeInSeconds: Int? = null, maximumRetryAttempts: Int? = null, onPartialBatchItemFailure: PipeOnPartialBatchItemFailureStreams? = null, parallelizationFactor: Int? = null, startingPosition: PipeDynamoDbStreamStartPosition)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val batchSize: Int? = null

The maximum number of records to include in each batch.

Link copied to clipboard

Define the target queue to send dead-letter queue events to.

Link copied to clipboard

The maximum length of a time to wait for events.

Link copied to clipboard

Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, EventBridge never discards old records.

Link copied to clipboard

Discard records after the specified number of retries. The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.

Link copied to clipboard

Define how to handle item process failures. AUTOMATIC_BISECT halves each batch and retry each half until all the records are processed or there is one failed message left in the batch.

Link copied to clipboard

The number of batches to process concurrently from each shard. The default value is 1.

Link copied to clipboard

(Streams only) The position in a stream from which to start reading. Valid values : TRIM_HORIZON | LATEST