Amazon Signer · JSON Structure

Amazon Signer Signing Configuration Structure

The configuration of a code signing operation.

Type: object Properties: 2 Required: 2
Code SigningIoTLambdaSecurity

SigningConfiguration is a JSON Structure definition published by Amazon Signer, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

encryptionAlgorithmOptions hashAlgorithmOptions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-signer/refs/heads/main/json-structure/amazon-signer-signing-configuration-structure.json",
  "name": "SigningConfiguration",
  "description": "The configuration of a code signing operation.",
  "properties": {
    "encryptionAlgorithmOptions": {
      "allOf": [
        {
          "type": "object",
          "required": [
            "allowedValues",
            "defaultValue"
          ],
          "properties": {
            "allowedValues": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/EncryptionAlgorithms"
                },
                {
                  "description": "The set of accepted encryption algorithms that are allowed in a code signing job."
                }
              ]
            },
            "defaultValue": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/EncryptionAlgorithm"
                },
                {
                  "description": "The default encryption algorithm that is used by a code signing job."
                }
              ]
            }
          },
          "description": "The encryption algorithm options that are available to a code signing job."
        },
        {
          "description": "The encryption algorithm options that are available for a code signing job."
        }
      ]
    },
    "hashAlgorithmOptions": {
      "allOf": [
        {
          "type": "object",
          "required": [
            "allowedValues",
            "defaultValue"
          ],
          "properties": {
            "allowedValues": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/HashAlgorithms"
                },
                {
                  "description": "The set of accepted hash algorithms allowed in a code signing job."
                }
              ]
            },
            "defaultValue": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/HashAlgorithm"
                },
                {
                  "description": "The default hash algorithm that is used in a code signing job."
                }
              ]
            }
          },
          "description": "The hash algorithms that are available to a code signing job."
        },
        {
          "description": "The hash algorithm options that are available for a code signing job."
        }
      ]
    }
  },
  "required": [
    "encryptionAlgorithmOptions",
    "hashAlgorithmOptions"
  ]
}