Skip to content

allAwsRegions

All valid AWS regions for this cloud account.

Arguments

Argument Type Description
cloudAccountId (required) String! Cloud account ID.

Returns

[AwsCloudAccountRegion!]!

Sample

query AllAwsRegions($cloudAccountId: String!) {
  allAwsRegions(cloudAccountId: $cloudAccountId)
}
{
  "cloudAccountId": "example-string"
}
{
  "data": {
    "allAwsRegions": [
      "AF_SOUTH_1"
    ]
  }
}