Interface StreamSourceParameters

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
DynamoDBSourceParameters, KinesisSourceParameters
All Known Implementing Classes:
DynamoDBSourceParameters.Jsii$Proxy, KinesisSourceParameters.Jsii$Proxy, StreamSourceParameters.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:24:11.935Z") @Stability(Experimental) public interface StreamSourceParameters extends software.amazon.jsii.JsiiSerializable
(experimental) Base parameters for streaming sources.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pipes.sources.alpha.*;
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.sqs.*;
 Queue queue;
 StreamSourceParameters streamSourceParameters = StreamSourceParameters.builder()
         .batchSize(123)
         .deadLetterTarget(queue)
         .maximumBatchingWindow(Duration.minutes(30))
         .maximumRecordAge(Duration.minutes(30))
         .maximumRetryAttempts(123)
         .onPartialBatchItemFailure(OnPartialBatchItemFailure.AUTOMATIC_BISECT)
         .parallelizationFactor(123)
         .build();