Interface CfnPipe.PipeSourceKinesisStreamParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.PipeSourceKinesisStreamParametersProperty.Jsii$Proxy
- Enclosing class:
CfnPipe
@Stability(Stable)
public static interface CfnPipe.PipeSourceKinesisStreamParametersProperty
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.*;
PipeSourceKinesisStreamParametersProperty pipeSourceKinesisStreamParametersProperty = PipeSourceKinesisStreamParametersProperty.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)
.startingPositionTimestamp("startingPositionTimestamp")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipe.PipeSourceKinesisStreamParametersPropertystatic final classAn implementation forCfnPipe.PipeSourceKinesisStreamParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStartingPosition
- See Also:
-
getBatchSize
- See Also:
-
getDeadLetterConfig
- See Also:
-
getMaximumBatchingWindowInSeconds
- See Also:
-
getMaximumRecordAgeInSeconds
- See Also:
-
getMaximumRetryAttempts
- See Also:
-
getOnPartialBatchItemFailure
- See Also:
-
getParallelizationFactor
- See Also:
-
getStartingPositionTimestamp
WithStartingPositionset toAT_TIMESTAMP, the time from which to start reading, in Unix time seconds.- See Also:
-
builder
-