Amazon FSx · Schema

Backup

An automatic or user-initiated backup of an Amazon FSx file system.

File SystemsLustreNetAppOpenZFSStorageWindows

Properties

Name Type Description
BackupId string Unique ID of the backup.
Lifecycle string Current lifecycle state.
Type string Type of backup.
CreationTime string
FileSystem object The file system that was backed up.
KmsKeyId string
ResourceARN string
Tags array
OwnerId string
SourceBackupId string
View JSON Schema on GitHub

JSON Schema

amazon-fsx-backup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-fsx/refs/heads/main/json-schema/amazon-fsx-backup-schema.json",
  "title": "Backup",
  "description": "An automatic or user-initiated backup of an Amazon FSx file system.",
  "type": "object",
  "properties": {
    "BackupId": {
      "type": "string",
      "description": "Unique ID of the backup."
    },
    "Lifecycle": {
      "type": "string",
      "enum": [
        "AVAILABLE",
        "CREATING",
        "TRANSFERRING",
        "DELETED",
        "FAILED",
        "PENDING",
        "COPYING"
      ],
      "description": "Current lifecycle state."
    },
    "Type": {
      "type": "string",
      "enum": [
        "AUTOMATIC",
        "USER_INITIATED",
        "AWS_BACKUP"
      ],
      "description": "Type of backup."
    },
    "CreationTime": {
      "type": "string",
      "format": "date-time"
    },
    "FileSystem": {
      "type": "object",
      "description": "The file system that was backed up."
    },
    "KmsKeyId": {
      "type": "string"
    },
    "ResourceARN": {
      "type": "string"
    },
    "Tags": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "OwnerId": {
      "type": "string"
    },
    "SourceBackupId": {
      "type": "string"
    }
  },
  "required": [
    "BackupId"
  ]
}