Amazon Signer · JSON Structure

Amazon Signer S3 Signed Object Structure

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

Type: object Properties: 2
Code SigningIoTLambdaSecurity

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

Properties

bucketName key

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-s3-signed-object-structure.json",
  "name": "S3SignedObject",
  "description": "The S3 bucket name and key where code signing saved your signed code image.",
  "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."
        }
      ]
    }
  }
}