Skip to content

Commit

Permalink
chore(certificatemanager): backfill missing enums for certificatemana…
Browse files Browse the repository at this point in the history
…ger (#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*
  • Loading branch information
paulhcsun authored Mar 4, 2025
1 parent 0dfc5d2 commit 30d4a59
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions packages/aws-cdk-lib/aws-certificatemanager/lib/certificate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,26 @@ export class KeyAlgorithm {
*/
public static readonly EC_SECP384R1 = new KeyAlgorithm('EC_secp384r1');

/**
* EC_secp521r1 algorithm
*/
public static readonly EC_SECP521R1 = new KeyAlgorithm('EC_secp521r1');

/**
* RSA_4096 algorithm
*/
public static readonly RSA_4096 = new KeyAlgorithm('RSA_4096');

/**
* RSA_3072 algorithm
*/
public static readonly RSA_3072 = new KeyAlgorithm('RSA_3072');

/**
* RSA_1024 algorithm
*/
public static readonly RSA_1024 = new KeyAlgorithm('RSA_1024');

constructor(
/**
* The name of the algorithm
Expand Down

0 comments on commit 30d4a59

Please sign in to comment.