Skip to content

Commit 1950d35

Browse files
authoredMar 4, 2025
Merge branch 'main' into inspector-scheduler-target-fix
2 parents 75240a1 + ab368ee commit 1950d35

File tree

6 files changed

+47
-0
lines changed

6 files changed

+47
-0
lines changed
 

‎packages/@aws-cdk/aws-amplify-alpha/lib/app.ts

+5
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,11 @@ export enum Platform {
569569
* server side rendered and static assets.
570570
*/
571571
WEB_COMPUTE = 'WEB_COMPUTE',
572+
573+
/**
574+
* WEB_DYNAMIC - Used to indicate the app is hosted using a fully dynamic architecture, where requests are processed at runtime by backend compute services.
575+
*/
576+
WEB_DYNAMIC = 'WEB_DYNAMIC',
572577
}
573578

574579
/**

‎packages/@aws-cdk/aws-eks-v2-alpha/lib/managed-nodegroup.ts

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ export enum CapacityType {
103103
* on-demand instances
104104
*/
105105
ON_DEMAND = 'ON_DEMAND',
106+
/**
107+
* capacity block instances
108+
*/
109+
CAPACITY_BLOCK = 'CAPACITY_BLOCK',
106110
}
107111

108112
/**

‎packages/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.ts

+10
Original file line numberDiff line numberDiff line change
@@ -311,4 +311,14 @@ export enum ServiceNamespace {
311311
* Neptune
312312
*/
313313
NEPTUNE = 'neptune',
314+
315+
/**
316+
* Cassandra
317+
*/
318+
CASSANDRA = 'cassandra',
319+
320+
/**
321+
* Workspaces
322+
*/
323+
WORKSPACES = 'workspaces',
314324
}

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

+20
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

‎packages/aws-cdk-lib/aws-ecr/lib/repository.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,10 @@ export class RepositoryEncryption {
10291029
* 'KMS'
10301030
*/
10311031
public static readonly KMS = new RepositoryEncryption('KMS');
1032+
/**
1033+
* 'KMS_DSSE'
1034+
*/
1035+
public static readonly KMS_DSSE = new RepositoryEncryption('KMS_DSSE');
10321036

10331037
/**
10341038
* @param value the string value of the encryption

‎packages/aws-cdk-lib/aws-fsx/lib/file-system.ts

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ export enum StorageType {
1414
* Hard Disk Drive storage
1515
*/
1616
HDD = 'HDD',
17+
/**
18+
* Intelligent Tiering storage
19+
*/
20+
INTELLIGENT_TIERING = 'INTELLIGENT_TIERING',
1721
}
1822

1923
/**

0 commit comments

Comments
 (0)
Failed to load comments.