From 5f1f4762e964345741426fa1242320a5fc117338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sp=C3=A5ng?= Date: Fri, 19 Nov 2021 22:25:37 +0100 Subject: [PATCH] feat(msk): add Kafka version 2.6.2 (#17497) Add support for Apache Kafka version 2.6.2 in Amazon MSK. Announcement: https://aws.amazon.com/about-aws/whats-new/2021/04/amazon-msk-adds-support-for-apache-kafka-version-2-6-2/ ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-msk/lib/cluster-version.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/@aws-cdk/aws-msk/lib/cluster-version.ts b/packages/@aws-cdk/aws-msk/lib/cluster-version.ts index b04c154b76054..44c03812d4bc0 100644 --- a/packages/@aws-cdk/aws-msk/lib/cluster-version.ts +++ b/packages/@aws-cdk/aws-msk/lib/cluster-version.ts @@ -37,6 +37,11 @@ export class KafkaVersion { */ public static readonly V2_6_1 = KafkaVersion.of('2.6.1'); + /** + * Kafka version 2.6.2 + */ + public static readonly V2_6_2 = KafkaVersion.of('2.6.2'); + /** * Kafka version 2.7.0 */