Interface CfnPipePropsMixin.PipeSourceDynamoDBStreamParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipePropsMixin.PipeSourceDynamoDBStreamParametersProperty.Jsii$Proxy
Enclosing class:
CfnPipePropsMixin

@Stability(Stable) public static interface CfnPipePropsMixin.PipeSourceDynamoDBStreamParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for using a DynamoDB stream as a source.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.pipes.*;
 PipeSourceDynamoDBStreamParametersProperty pipeSourceDynamoDBStreamParametersProperty = PipeSourceDynamoDBStreamParametersProperty.builder()
         .batchSize(123)
         .deadLetterConfig(DeadLetterConfigProperty.builder()
                 .arn("arn")
                 .build())
         .maximumBatchingWindowInSeconds(123)
         .maximumRecordAgeInSeconds(123)
         .maximumRetryAttempts(123)
         .onPartialBatchItemFailure("onPartialBatchItemFailure")
         .parallelizationFactor(123)
         .startingPosition("startingPosition")
         .build();
 

See Also: