AWS Security ChangesHomeSearch

AWS amazonq documentation change

Service: amazonq · 2025-03-12 · Documentation low

File: amazonq/latest/qbusiness-ug/googledrive-api.md

Summary

Updated file size limit documentation and added media extraction configuration schema

Security assessment

Changes focus on configuration syntax and size limits without explicit security context

Diff

diff --git a/amazonq/latest/qbusiness-ug/googledrive-api.md b/amazonq/latest/qbusiness-ug/googledrive-api.md



index 8b6e86016..d425dd0f2 100644
--- a/amazonq/latest/qbusiness-ug/googledrive-api.md
+++ b/amazonq/latest/qbusiness-ug/googledrive-api.md
@@ -81 +81 @@ Amazon Q Business crawls ACL information to ensure responses are generated only
-`maxFileSizeInMegaBytes` | Specify the maximum single file size limit in MBs that Amazon Q will crawl. Amazon Q will crawl only the files within the size limit you define. The default file size is 50 MB. The maximum file size should be greater than 0MB and less than or equal to 50 MB. You can use up to 10 GB (10240 MB) if you set `videoExtractionStatus` to ENABLED in `mediaExtractionConfiguration.videoExtractionConfiguration` when using CreateDatasource or UpdateDatasource API. Otherwise, you can use up to 2 GB (2048 MB) if you set `audioExtractionStatus` to ENABLED in ` mediaExtractionConfiguration.audioExtractionConfiguration ` when using the `CreateDatasource `or `UpdateDatasource` API. | `string` | No  
+`maxFileSizeInMegaBytes` | Specify the maximum single file size limit in MBs that Amazon Q will crawl. Amazon Q will crawl only the files within the size limit you define. The default file size is 50MB. The maximum file size should be greater than 0MB and less than or equal to 50MB. | `string` | No  
@@ -478 +478 @@ The following is the GoogleDrive JSON schema example:
-        "maxFileSizeInMegaBytes": "10240",
+        "maxFileSizeInGigaBytes": "10",
@@ -501 +501,13 @@ The following is the GoogleDrive JSON schema example:
-        "deletionProtectionThreshold": "15"
+        "deletionProtectionThreshold": "15",
+        "mediaExtractionConfiguration": {
+        "type": "object",
+        "properties": {
+        "audioExtractionStatus": {
+        "type": "string",
+        "enum": ["ENABLED", "DISABLED"]
+        },
+        "videoExtractionStatus": {
+        "type": "string",
+        "enum": ["ENABLED", "DISABLED"]
+    }
+    }