Skip to content
Merged
Changes from 2 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 @@ -136,6 +136,26 @@ export class KeyAlgorithm {
* EC_secp384r1 algorithm
*/
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(
/**
Expand Down
Loading