Skip to content

Commit

Permalink
fix(kms): incorrect parameter name in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Feb 23, 2024
1 parent 7a4c189 commit 5d32fca
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 5d32fca

Please sign in to comment.