From 0989e7651ae96f351b9e02870010211ca20f3363 Mon Sep 17 00:00:00 2001 From: Michael Sambol Date: Fri, 23 Feb 2024 09:43:00 -0500 Subject: [PATCH] chore(kms): incorrect parameter name in doc (#29234) Closes #29222. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-kms/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-kms/README.md b/packages/aws-cdk-lib/aws-kms/README.md index b5a5786cc7225..a039288e468eb 100644 --- a/packages/aws-cdk-lib/aws-kms/README.md +++ b/packages/aws-cdk-lib/aws-kms/README.md @@ -77,7 +77,7 @@ import * as cloudtrail from 'aws-cdk-lib/aws-cloudtrail'; const myKeyAlias = kms.Alias.fromAliasName(this, 'myKey', 'alias/aws/s3'); const trail = new cloudtrail.Trail(this, 'myCloudTrail', { sendToCloudWatchLogs: true, - kmsKey: myKeyAlias, + encryptionKey: myKeyAlias, }); ```