Amazon S3 Glacier · Schema

JobParameters

JobParameters schema from api

ArchiveBackupStorage

Properties

Name Type Description
Type string
ArchiveId string
Description string
SNSTopic string
RetrievalByteRange string
Tier string
View JSON Schema on GitHub

JSON Schema

amazon-s3-glacier-api-job-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-s3-glacier/refs/heads/main/json-schema/amazon-s3-glacier-api-job-parameters-schema.json",
  "title": "JobParameters",
  "description": "JobParameters schema from api",
  "type": "object",
  "properties": {
    "Type": {
      "type": "string",
      "enum": [
        "archive-retrieval",
        "inventory-retrieval",
        "select"
      ]
    },
    "ArchiveId": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "SNSTopic": {
      "type": "string"
    },
    "RetrievalByteRange": {
      "type": "string"
    },
    "Tier": {
      "type": "string",
      "enum": [
        "Expedited",
        "Standard",
        "Bulk"
      ]
    }
  }
}