AccountUsage

The number of functions and amount of storage in use.

APIs.ioEngineeringPlatform

Properties

Name Type Description
TotalCodeSize object
FunctionCount object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-accountusage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountUsage",
  "title": "AccountUsage",
  "type": "object",
  "properties": {
    "TotalCodeSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The amount of storage space, in bytes, that's being used by deployment packages and layer archives."
        }
      ]
    },
    "FunctionCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The number of Lambda functions."
        }
      ]
    }
  },
  "description": "The number of functions and amount of storage in use."
}