Amazon Signer · Schema

Permission

A cross-account permission for a signing profile.

Code SigningIoTLambdaSecurity

Properties

Name Type Description
action object
principal object
statementId object
profileVersion object
View JSON Schema on GitHub

JSON Schema

amazon-signer-permission-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-permission-schema.json",
  "title": "Permission",
  "description": "A cross-account permission for a signing profile.",
  "type": "object",
  "properties": {
    "action": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "An AWS Signer action permitted as part of cross-account permissions."
        }
      ]
    },
    "principal": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "The AWS principal that has been granted a cross-account permission."
        }
      ]
    },
    "statementId": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "A unique identifier for a cross-account permission statement."
        }
      ]
    },
    "profileVersion": {
      "allOf": [
        {
          "type": "string",
          "pattern": "^[a-zA-Z0-9]{10}$",
          "minLength": 10,
          "maxLength": 10
        },
        {
          "description": "The signing profile version that a permission applies to."
        }
      ]
    }
  }
}