Amazon Signer · JSON Structure

Amazon Signer S3 Destination Structure

The name and prefix of the S3 bucket where code signing saves your signed objects.

Type: object Properties: 2
Code SigningIoTLambdaSecurity

S3Destination 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 prefix

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-destination-structure.json",
  "name": "S3Destination",
  "description": "The name and prefix of the S3 bucket where code signing saves your signed objects.",
  "properties": {
    "bucketName": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Name of the S3 bucket."
        }
      ]
    },
    "prefix": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "An Amazon S3 prefix that you can use to limit responses to those that begin with the specified prefix."
        }
      ]
    }
  }
}