Skip to content

Commit 3da0c4d

Browse files
authored
feat(bedrock): support Amazon Nova Reel 1.1 (#34070)
Ref: https://aws.amazon.com/about-aws/whats-new/2025/04/amazon-nova-reel-1-1/ ```sh % aws bedrock get-foundation-model --model-identifier amazon.nova-reel-v1:1 --region us-east-1 { "modelDetails": { "modelArn": "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-reel-v1:1", "modelId": "amazon.nova-reel-v1:1", "modelName": "Nova Reel", "providerName": "Amazon", "inputModalities": [ "TEXT", "IMAGE" ], "outputModalities": [ "VIDEO" ], "responseStreamingSupported": false, "customizationsSupported": [], "inferenceTypesSupported": [ "ON_DEMAND" ], "modelLifecycle": { "status": "ACTIVE" } } } ``` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 32b6b4d commit 3da0c4d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts

+3
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ export class FoundationModelIdentifier {
8686
/** Base model "amazon.nova-reel-v1:0". */
8787
public static readonly AMAZON_NOVA_REEL_V1_0 = new FoundationModelIdentifier('amazon.nova-reel-v1:0');
8888

89+
/** Base model "amazon.nova-reel-v1:1". */
90+
public static readonly AMAZON_NOVA_REEL_V1_1 = new FoundationModelIdentifier('amazon.nova-reel-v1:1');
91+
8992
/**
9093
* Base model "ai21.j2-mid".
9194
* @deprecated use latest version of the model

0 commit comments

Comments
 (0)