AccountLimit

Limits that are related to concurrency and storage. All file and storage sizes are in bytes.

APIs.ioEngineeringPlatform

Properties

Name Type Description
TotalCodeSize object
CodeSizeUnzipped object
CodeSizeZipped object
ConcurrentExecutions object
UnreservedConcurrentExecutions object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-accountlimit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountLimit",
  "title": "AccountLimit",
  "type": "object",
  "properties": {
    "TotalCodeSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The amount of storage space that you can use for all deployment packages and layer archives."
        }
      ]
    },
    "CodeSizeUnzipped": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The maximum size of a function's deployment package and layers when they're extracted."
        }
      ]
    },
    "CodeSizeZipped": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files."
        }
      ]
    },
    "ConcurrentExecutions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The maximum number of simultaneous function executions."
        }
      ]
    },
    "UnreservedConcurrentExecutions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UnreservedConcurrentExecutions"
        },
        {
          "description": "The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with <a>PutFunctionConcurrency</a>."
        }
      ]
    }
  },
  "description": "Limits that are related to concurrency and storage. All file and storage sizes are in bytes."
}