Skip to content

Commit ab368ee

Browse files
authored
chore(ecr): backfill missing enums for ecr (#33643)
### 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*
1 parent 30d4a59 commit ab368ee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/aws-cdk-lib/aws-ecr/lib/repository.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,10 @@ export class RepositoryEncryption {
10291029
* 'KMS'
10301030
*/
10311031
public static readonly KMS = new RepositoryEncryption('KMS');
1032+
/**
1033+
* 'KMS_DSSE'
1034+
*/
1035+
public static readonly KMS_DSSE = new RepositoryEncryption('KMS_DSSE');
10321036

10331037
/**
10341038
* @param value the string value of the encryption

0 commit comments

Comments
 (0)