PersistentStorage

Information about the persistent storage for a Dev Environment.

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
sizeInGiB object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-persistent-storage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-schema/amazon-codecatalyst-persistent-storage-schema.json",
  "title": "PersistentStorage",
  "description": "Information about the persistent storage for a Dev Environment.",
  "type": "object",
  "properties": {
    "sizeInGiB": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PersistentStorageSizeInGiBInteger"
        },
        {
          "description": "<p>The size of the persistent storage in gigabytes (specifically GiB).</p> <note> <p>Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.</p> </note>"
        }
      ]
    }
  },
  "required": [
    "sizeInGiB"
  ]
}