Skip to content

Commit

Permalink
chore(ecr): backfill missing enums for ecr (aws#33643)
Browse files Browse the repository at this point in the history
### Description of changes
backfill missing enums for ecr

### 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*
  • Loading branch information
paulhcsun authored Mar 4, 2025
1 parent 30d4a59 commit ab368ee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/aws-cdk-lib/aws-ecr/lib/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,10 @@ export class RepositoryEncryption {
* 'KMS'
*/
public static readonly KMS = new RepositoryEncryption('KMS');
/**
* 'KMS_DSSE'
*/
public static readonly KMS_DSSE = new RepositoryEncryption('KMS_DSSE');

/**
* @param value the string value of the encryption
Expand Down

0 comments on commit ab368ee

Please sign in to comment.