Amazon Signer · Schema

S3SignedObject

The S3 bucket name and key where code signing saved your signed code image.

Code SigningIoTLambdaSecurity

Properties

Name Type Description
bucketName object
key object
View JSON Schema on GitHub

JSON Schema

amazon-signer-s3-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-s3-signed-object-schema.json",
  "title": "S3SignedObject",
  "description": "The S3 bucket name and key where code signing saved your signed code image.",
  "type": "object",
  "properties": {
    "bucketName": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Name of the S3 bucket."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Key name that uniquely identifies a signed code image in your bucket."
        }
      ]
    }
  }
}