Amazon Signer · JSON Structure

Amazon Signer Destination Structure

Points to an S3Destination object that contains information about your S3 bucket.

Type: object Properties: 1
Code SigningIoTLambdaSecurity

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

Properties

s3

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-destination-structure.json",
  "name": "Destination",
  "description": "Points to an <code>S3Destination</code> object that contains information about your S3 bucket.",
  "properties": {
    "s3": {
      "allOf": [
        {
          "type": "object",
          "properties": {
            "bucketName": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/BucketName"
                },
                {
                  "description": "Name of the S3 bucket."
                }
              ]
            },
            "prefix": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/Prefix"
                },
                {
                  "description": "An Amazon S3 prefix that you can use to limit responses to those that begin with the specified prefix."
                }
              ]
            }
          },
          "description": "The name and prefix of the S3 bucket where code signing saves your signed objects."
        },
        {
          "description": "The <code>S3Destination</code> object."
        }
      ]
    }
  }
}