Skip to content

Commit

Permalink
chore(kms): incorrect parameter name in doc (aws#29234)
Browse files Browse the repository at this point in the history
Closes aws#29222.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
msambol committed Feb 23, 2024
1 parent 7a4c189 commit 0989e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-kms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
```

Expand Down

0 comments on commit 0989e76

Please sign in to comment.