Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(certificatemanager): backfill missing enums for certificatemanager #33638

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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