Skip to content

Commit

Permalink
docs(kinesis-analytics-flink): fix typo (aws#16895)
Browse files Browse the repository at this point in the history
minPausesBetweenCheckpoints -> minPauseBetweenCheckpoints

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
mattiamatrix authored and TikiTDO committed Feb 21, 2022
1 parent 8b387cd commit d28f614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-kinesisanalytics-flink/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const flinkApp = new flink.Application(this, 'Application', {
runtime: file.Runtime.FLINK_1_11,
checkpointingEnabled: true, // default is true
checkpointInterval: cdk.Duration.seconds(30), // default is 1 minute
minPausesBetweenCheckpoints: cdk.Duration.seconds(10), // default is 5 seconds
minPauseBetweenCheckpoints: cdk.Duration.seconds(10), // default is 5 seconds
logLevel: flink.LogLevel.ERROR, // default is INFO
metricsLevel: flink.MetricsLevel.PARALLELISM, // default is APPLICATION
autoScalingEnabled: false, // default is true
Expand Down

0 comments on commit d28f614

Please sign in to comment.