Amazon Signer · Schema

SignedObject

Points to an S3SignedObject object that contains information about your signed code image.

Code SigningIoTLambdaSecurity

Properties

Name Type Description
s3 object
View JSON Schema on GitHub

JSON Schema

amazon-signer-signed-object-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-signed-object-schema.json",
  "title": "SignedObject",
  "description": "Points to an <code>S3SignedObject</code> object that contains information about your signed code image.",
  "type": "object",
  "properties": {
    "s3": {
      "allOf": [
        {
          "type": "object",
          "properties": {
            "bucketName": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/BucketName"
                },
                {
                  "description": "Name of the S3 bucket."
                }
              ]
            },
            "key": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/Key"
                },
                {
                  "description": "Key name that uniquely identifies a signed code image in your bucket."
                }
              ]
            }
          },
          "description": "The S3 bucket name and key where code signing saved your signed code image."
        },
        {
          "description": "The <code>S3SignedObject</code>."
        }
      ]
    }
  }
}