Amazon IoT Core · Schema

ListBillingGroupsResponse

ListBillingGroupsResponse schema

Device ManagementIoTMQTTMessage Routing

Properties

Name Type Description
billingGroups object
nextToken object
View JSON Schema on GitHub

JSON Schema

iot-core-list-billing-groups-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-list-billing-groups-response-schema.json",
  "title": "ListBillingGroupsResponse",
  "description": "ListBillingGroupsResponse schema",
  "type": "object",
  "properties": {
    "billingGroups": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BillingGroupNameAndArnList"
        },
        {
          "description": "The list of billing groups."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "The token to use to get the next set of results, or <b>null</b> if there are no additional results."
        }
      ]
    }
  }
}