Skip to content

Commit 30d4a59

Browse files
authored
chore(certificatemanager): backfill missing enums for certificatemanager (#33638)
### Description of changes backfill missing enums for certificatemanager ### 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 0dfc5d2 commit 30d4a59

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

packages/aws-cdk-lib/aws-certificatemanager/lib/certificate.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,26 @@ export class KeyAlgorithm {
137137
*/
138138
public static readonly EC_SECP384R1 = new KeyAlgorithm('EC_secp384r1');
139139

140+
/**
141+
* EC_secp521r1 algorithm
142+
*/
143+
public static readonly EC_SECP521R1 = new KeyAlgorithm('EC_secp521r1');
144+
145+
/**
146+
* RSA_4096 algorithm
147+
*/
148+
public static readonly RSA_4096 = new KeyAlgorithm('RSA_4096');
149+
150+
/**
151+
* RSA_3072 algorithm
152+
*/
153+
public static readonly RSA_3072 = new KeyAlgorithm('RSA_3072');
154+
155+
/**
156+
* RSA_1024 algorithm
157+
*/
158+
public static readonly RSA_1024 = new KeyAlgorithm('RSA_1024');
159+
140160
constructor(
141161
/**
142162
* The name of the algorithm

0 commit comments

Comments
 (0)