get_bucket_location
Retrieve the AWS region or geographic location where an S3-compatible storage bucket is hosted to ensure proper API endpoint configuration and data residency compliance.
Instructions
Get the region/location of a bucket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket | Yes | Bucket name |
Input Schema (JSON Schema)
{
"properties": {
"bucket": {
"description": "Bucket name",
"type": "string"
}
},
"required": [
"bucket"
],
"type": "object"
}