Interface CfnPipe.PipeSourceDynamoDBStreamParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.PipeSourceDynamoDBStreamParametersProperty.Jsii$Proxy
- Enclosing class:
CfnPipe
@Stability(Stable)
public static interface CfnPipe.PipeSourceDynamoDBStreamParametersProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
PipeSourceDynamoDBStreamParametersProperty pipeSourceDynamoDBStreamParametersProperty = PipeSourceDynamoDBStreamParametersProperty.builder()
.startingPosition("startingPosition")
// the properties below are optional
.batchSize(123)
.deadLetterConfig(DeadLetterConfigProperty.builder()
.arn("arn")
.build())
.maximumBatchingWindowInSeconds(123)
.maximumRecordAgeInSeconds(123)
.maximumRetryAttempts(123)
.onPartialBatchItemFailure("onPartialBatchItemFailure")
.parallelizationFactor(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.PipeSourceDynamoDBStreamParametersPropertystatic final classAn implementation forCfnPipe.PipeSourceDynamoDBStreamParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStartingPosition
(Streams only) The position in a stream from which to start reading.Valid values :
TRIM_HORIZON | LATEST- See Also:
-
getBatchSize
- See Also:
-
getDeadLetterConfig
- See Also:
-
getMaximumBatchingWindowInSeconds
- See Also:
-
getMaximumRecordAgeInSeconds
- See Also:
-
getMaximumRetryAttempts
- See Also:
-
getOnPartialBatchItemFailure
- See Also:
-
getParallelizationFactor
- See Also:
-
builder
-