Amazon Signer · Schema

Destination

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

Code SigningIoTLambdaSecurity

Properties

Name Type Description
s3 object
View JSON Schema on GitHub

JSON Schema

amazon-signer-destination-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-destination-schema.json",
  "title": "Destination",
  "description": "Points to an <code>S3Destination</code> object that contains information about your S3 bucket.",
  "type": "object",
  "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."
        }
      ]
    }
  }
}