Skip to content

Commit 7ba8f14

Browse files
authored
Merge branch 'main' into automation/yarn-upgrade
2 parents 0e0eeaa + 342965c commit 7ba8f14

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.mergify.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# See https://doc.mergify.io
2+
merge_bot_account: aws-cdk-automation
23
merge_queue:
34
# Hopefully this gets Mergify to stop creating PRs just to test merges (it both messes with statistics and our automatic validations)
45
max_parallel_checks: 1

packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@ export class FoundationModelIdentifier {
254254
/** Base model "anthropic.claude-opus-4-20250514-v1:0" */
255255
public static readonly ANTHROPIC_CLAUDE_OPUS_4_20250514_V1_0 = new FoundationModelIdentifier('anthropic.claude-opus-4-20250514-v1:0');
256256

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+
257260
/**
258261
* Base model "anthropic.claude-instant-v1".
259262
* @deprecated use latest version of the model
@@ -302,6 +305,12 @@ export class FoundationModelIdentifier {
302305
/** Base model "deepseek.r1-v1:0". */
303306
public static readonly DEEP_SEEK_R1_V1_0 = new FoundationModelIdentifier('deepseek.r1-v1:0');
304307

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+
305314
/** Base model "luma.ray-v2:0". */
306315
public static readonly LUMA_RAY_V2_0 = new FoundationModelIdentifier('luma.ray-v2:0');
307316

packages/aws-cdk-lib/aws-ecs/lib/ec2/ec2-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export interface Ec2ServiceProps extends BaseServiceOptions {
9696
* service must not be a target of a Classic Load Balancer.
9797
*
9898
* @see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
99-
* @default AvailabilityZoneRebalancing.DISABLED
99+
* @default AvailabilityZoneRebalancing.ENABLED
100100
*/
101101
readonly availabilityZoneRebalancing?: AvailabilityZoneRebalancing;
102102
}

packages/aws-cdk-lib/aws-ecs/lib/fargate/fargate-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export interface FargateServiceProps extends BaseServiceOptions {
7171
* of a Classic Load Balancer.
7272
*
7373
* @see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
74-
* @default AvailabilityZoneRebalancing.DISABLED
74+
* @default AvailabilityZoneRebalancing.ENABLED
7575
*/
7676
readonly availabilityZoneRebalancing?: AvailabilityZoneRebalancing;
7777
}

0 commit comments

Comments
 (0)