Amazon Signer · Schema

EncryptionAlgorithmOptions

The encryption algorithm options that are available to a code signing job.

Code SigningIoTLambdaSecurity

Properties

Name Type Description
allowedValues object
defaultValue object
View JSON Schema on GitHub

JSON Schema

amazon-signer-encryption-algorithm-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-signer/refs/heads/main/json-schema/amazon-signer-encryption-algorithm-options-schema.json",
  "title": "EncryptionAlgorithmOptions",
  "description": "The encryption algorithm options that are available to a code signing job.",
  "type": "object",
  "properties": {
    "allowedValues": {
      "allOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/EncryptionAlgorithm"
          }
        },
        {
          "description": "The set of accepted encryption algorithms that are allowed in a code signing job."
        }
      ]
    },
    "defaultValue": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "RSA",
            "ECDSA"
          ]
        },
        {
          "description": "The default encryption algorithm that is used by a code signing job."
        }
      ]
    }
  },
  "required": [
    "allowedValues",
    "defaultValue"
  ]
}