File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
# See https://doc.mergify.io
2
+ merge_bot_account : aws-cdk-automation
2
3
merge_queue :
3
4
# Hopefully this gets Mergify to stop creating PRs just to test merges (it both messes with statistics and our automatic validations)
4
5
max_parallel_checks : 1
Original file line number Diff line number Diff line change @@ -254,6 +254,9 @@ export class FoundationModelIdentifier {
254
254
/** Base model "anthropic.claude-opus-4-20250514-v1:0" */
255
255
public static readonly ANTHROPIC_CLAUDE_OPUS_4_20250514_V1_0 = new FoundationModelIdentifier ( 'anthropic.claude-opus-4-20250514-v1:0' ) ;
256
256
257
+ /** Base model "anthropic.claude-opus-4-1-20250805-v1:0". */
258
+ public static readonly ANTHROPIC_CLAUDE_OPUS_4_1_20250805_V1_0 = new FoundationModelIdentifier ( 'anthropic.claude-opus-4-1-20250805-v1:0' ) ;
259
+
257
260
/**
258
261
* Base model "anthropic.claude-instant-v1".
259
262
* @deprecated use latest version of the model
@@ -302,6 +305,12 @@ export class FoundationModelIdentifier {
302
305
/** Base model "deepseek.r1-v1:0". */
303
306
public static readonly DEEP_SEEK_R1_V1_0 = new FoundationModelIdentifier ( 'deepseek.r1-v1:0' ) ;
304
307
308
+ /** Base model "openai.gpt-oss-120b-1:0". */
309
+ public static readonly OPENAI_GPT_OSS_120B_1 = new FoundationModelIdentifier ( 'openai.gpt-oss-120b-1:0' ) ;
310
+
311
+ /** Base model "openai.gpt-oss-20b-1:0". */
312
+ public static readonly OPENAI_GPT_OSS_20B_1 = new FoundationModelIdentifier ( 'openai.gpt-oss-20b-1:0' ) ;
313
+
305
314
/** Base model "luma.ray-v2:0". */
306
315
public static readonly LUMA_RAY_V2_0 = new FoundationModelIdentifier ( 'luma.ray-v2:0' ) ;
307
316
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ export interface Ec2ServiceProps extends BaseServiceOptions {
96
96
* service must not be a target of a Classic Load Balancer.
97
97
*
98
98
* @see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
99
- * @default AvailabilityZoneRebalancing.DISABLED
99
+ * @default AvailabilityZoneRebalancing.ENABLED
100
100
*/
101
101
readonly availabilityZoneRebalancing ?: AvailabilityZoneRebalancing ;
102
102
}
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export interface FargateServiceProps extends BaseServiceOptions {
71
71
* of a Classic Load Balancer.
72
72
*
73
73
* @see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
74
- * @default AvailabilityZoneRebalancing.DISABLED
74
+ * @default AvailabilityZoneRebalancing.ENABLED
75
75
*/
76
76
readonly availabilityZoneRebalancing ?: AvailabilityZoneRebalancing ;
77
77
}
You can’t perform that action at this time.
0 commit comments