From 95371cce5370c0d5ce06265b2ec1c8276a7fb3f4 Mon Sep 17 00:00:00 2001 From: Beandon13 Date: Tue, 5 May 2026 17:19:30 -0400 Subject: [PATCH] docs(s3): document region_name connection parameter Adds the missing `region_name` parameter to the Amazon S3 integration docs. It is already a documented option in `docs/integrations/data-integrations/all-data-integrations.mdx` and is honored by the handler, but is absent from the standalone S3 integration page. Without it, users hitting endpoints that require an explicit region (or who don't want the implicit `GetBucketLocation` round trip) have to discover it from issue trackers. Refs: https://github.com/mindsdb/mindsdb/issues/12286 --- docs/integrations/data-integrations/amazon-s3.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/integrations/data-integrations/amazon-s3.mdx b/docs/integrations/data-integrations/amazon-s3.mdx index 33ec87f05c6..ea42e5e76e9 100644 --- a/docs/integrations/data-integrations/amazon-s3.mdx +++ b/docs/integrations/data-integrations/amazon-s3.mdx @@ -24,6 +24,7 @@ WITH parameters = { "aws_access_key_id": "AQAXEQK89OX07YS34OP", "aws_secret_access_key": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY", + "region_name": "us-east-1", "bucket": "my-bucket" }; ``` @@ -40,6 +41,7 @@ Required connection parameters include the following: Optional connection parameters include the following: * `aws_session_token`: The AWS session token that identifies the user or IAM role. This becomes necessary when using temporary security credentials. +* `region_name`: The AWS region of the bucket (for example, `us-east-1`). When omitted, MindsDB falls back to the bucket's location, which may add an extra metadata round trip and can fail for endpoints that require an explicit region. * `bucket`: The name of the Amazon S3 bucket. If not provided, all available buckets can be queried, however, this can affect performance, especially when listing all of the available objects. ## Usage