Skip to content

Commit c3812b2

Browse files
authored
docs(dynamodb): fix doc for awsManagedKey method (#31649)
### Issue # (if applicable) Closes #<issue number here>. ### Reason for this change The doc for `awsManagedKey` method is wrong. - Configure server-side encryption using **a DynamoDB owned** key. ### Description of changes Fixed. - Configure server-side encryption using **an AWS managed** key. ### Description of how you validated changes ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 18eb3eb commit c3812b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/aws-dynamodb/lib/encryption.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export abstract class TableEncryptionV2 {
2626
}
2727

2828
/**
29-
* Configure server-side encryption using a DynamoDB owned key.
29+
* Configure server-side encryption using an AWS managed key.
3030
*/
3131
public static awsManagedKey(): TableEncryptionV2 {
3232
return new (class extends TableEncryptionV2 {

0 commit comments

Comments
 (0)