We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dfc5d2 commit 30d4a59Copy full SHA for 30d4a59
packages/aws-cdk-lib/aws-certificatemanager/lib/certificate.ts
@@ -137,6 +137,26 @@ export class KeyAlgorithm {
137
*/
138
public static readonly EC_SECP384R1 = new KeyAlgorithm('EC_secp384r1');
139
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
160
constructor(
161
/**
162
* The name of the algorithm
0 commit comments