Amazon Signer · JSON Structure

Amazon Signer S3 Source Structure

Information about the S3 bucket where you saved your unsigned code.

Type: object Properties: 3 Required: 3
Code SigningIoTLambdaSecurity

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

Properties

bucketName key version

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-source-structure.json",
  "name": "S3Source",
  "description": "Information about the S3 bucket where you saved your unsigned code.",
  "properties": {
    "bucketName": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Name of the S3 bucket."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Key name of the bucket object that contains your unsigned code."
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Version of your source image in your version enabled S3 bucket."
        }
      ]
    }
  },
  "required": [
    "bucketName",
    "key",
    "version"
  ]
}