v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Cloud

Get Supported AWS Regions

Get a list of all AWS regions supported by Lucid Cloud.

get/v2/dataSources/aws/regions

Response

OK. Returns a list of AWS regions supported by the REST API, including both default and opt-in regions. Each region is annotated with its type to indicate whether it requires explicit enablement in the AWS account.

namestring required

The AWS region identifier

type'default' | 'optin' required

The region type - "default" for standard regions, "optin" for regions that require explicit enablement

Example response

[
  {
    "name": "us-east-1",
    "type": "default"
  },
  {
    "name": "eu-west-1",
    "type": "default"
  },
  {
    "name": "ap-east-1",
    "type": "optin"
  },
  {
    "name": "me-south-1",
    "type": "optin"
  }
]