AWS Security ChangesHomeSearch

AWS bedrock documentation change

Service: bedrock · 2026-03-19 · Documentation low

File: bedrock/latest/userguide/model-card-mistral-ai-pixtral-large.md

Summary

Updated model capabilities table to show support for Invoke and Converse APIs, replaced detailed quota table with references to external documentation, and added code examples for Invoke and Converse APIs.

Security assessment

The changes are feature updates showing new API support and removing hardcoded quota values in favor of referencing official documentation. No security vulnerabilities, patches, or security features are mentioned or implied in the changes.

Diff

diff --git a/bedrock/latest/userguide/model-card-mistral-ai-pixtral-large.md b/bedrock/latest/userguide/model-card-mistral-ai-pixtral-large.md
index 01449e43a..798e24531 100644
--- a//bedrock/latest/userguide/model-card-mistral-ai-pixtral-large.md
+++ b//bedrock/latest/userguide/model-card-mistral-ai-pixtral-large.md
@@ -34,2 +34,2 @@ Pixtral Large is Mistral AI's 124-billion parameter multimodal model that proces
-![No](/images/bedrock/latest/userguide/images/icons/icon-no.png) Speech| ![No](/images/bedrock/latest/userguide/images/icons/icon-no.png) Speech| ![No](/images/bedrock/latest/userguide/images/icons/icon-no.png) `Invoke`|   
-![Yes](/images/bedrock/latest/userguide/images/icons/icon-yes.png) Text| ![Yes](/images/bedrock/latest/userguide/images/icons/icon-yes.png) Text| ![No](/images/bedrock/latest/userguide/images/icons/icon-no.png) `Converse`|   
+![No](/images/bedrock/latest/userguide/images/icons/icon-no.png) Speech| ![No](/images/bedrock/latest/userguide/images/icons/icon-no.png) Speech| ![Yes](/images/bedrock/latest/userguide/images/icons/icon-yes.png) `Invoke`|   
+![Yes](/images/bedrock/latest/userguide/images/icons/icon-yes.png) Text| ![Yes](/images/bedrock/latest/userguide/images/icons/icon-yes.png) Text| ![Yes](/images/bedrock/latest/userguide/images/icons/icon-yes.png) `Converse`|   
@@ -101,9 +101 @@ eu-west-3 (Paris)| eu-central-1 (Frankfurt), eu-north-1 (Stockholm), eu-west-1 (
-Your AWS account has default quotas to maintain the performance of the service and to ensure appropriate usage of Amazon Bedrock. The default quotas assigned to an account might be updated depending on regional factors, payment history, fraudulent usage, and/or approval of a quota [increase request](https://docs.aws.amazon.com/bedrock/latest/userguide/quotas-increase.html). For more details, please refer to [Quotas](https://docs.aws.amazon.com/bedrock/latest/userguide/quotas.html) documentation.
-
-**Quota** | **Default value**  
----|---  
-Cross-region requests per minute| 10  
-Cross-region tokens per minute| 80,000  
-Max tokens per day| 57,600,000  
-  
-_These are default quotas shown for us-east-1. To see quotas and limits for your account, please log in to your[ AWS Console](https://aws.amazon.com/console/)._
+Your AWS account has default quotas to maintain the performance of the service and to ensure appropriate usage of Amazon Bedrock. The default quotas assigned to an account might be updated depending on regional factors, payment history, fraudulent usage, and/or approval of a quota [increase request](https://docs.aws.amazon.com/bedrock/latest/userguide/quotas-increase.html). For more details, please refer to [Quotas for Amazon Bedrock](./quotas.html) documentation and see the [limits](https://docs.aws.amazon.com/general/latest/gr/bedrock.html#limits_bedrock) for the model.
@@ -128,0 +121,35 @@ _These are default quotas shown for us-east-1. To see quotas and limits for your
+Invoke API
+    
+    
+    
+    import json
+    import boto3
+    
+    client = boto3.client('bedrock-runtime', region_name='us-east-1')
+    response = client.invoke_model(
+        modelId='mistral.pixtral-large-2502-v1:0',
+        body=json.dumps({
+                'messages': [{ 'role': 'user', 'content': 'Can you explain the features of Amazon Bedrock?'}],
+                'max_tokens': 1024
+        })
+     )
+     print(json.loads(response['body'].read()))
+
+Converse API
+    
+    
+    
+    import boto3
+    
+    client = boto3.client('bedrock-runtime', region_name='us-east-1')
+    response = client.converse(
+        modelId='mistral.pixtral-large-2502-v1:0',
+        messages=[
+            {
+                'role': 'user',
+                'content': [{'text': 'Can you explain the features of Amazon Bedrock?'}]
+            }
+        ]
+    )
+    print(response)
+