Amazon Signer · JSON Structure

Amazon Signer Add Profile Permission Request Structure

AddProfilePermissionRequest schema from AWS Signer API

Type: object Properties: 5 Required: 3
Code SigningIoTLambdaSecurity

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

Properties

profileVersion action principal revisionId statementId

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-add-profile-permission-request-structure.json",
  "name": "AddProfilePermissionRequest",
  "description": "AddProfilePermissionRequest schema from AWS Signer API",
  "properties": {
    "profileVersion": {
      "allOf": [
        {
          "type": "string",
          "pattern": "^[a-zA-Z0-9]{10}$",
          "minLength": 10,
          "maxLength": 10
        },
        {
          "description": "The version of the signing profile."
        }
      ]
    },
    "action": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "The AWS Signer action permitted as part of cross-account permissions."
        }
      ]
    },
    "principal": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "The AWS principal receiving cross-account permissions. This may be an IAM role or another AWS account ID."
        }
      ]
    },
    "revisionId": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "A unique identifier for the current profile revision."
        }
      ]
    },
    "statementId": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "A unique identifier for the cross-account permission statement."
        }
      ]
    }
  },
  "required": [
    "action",
    "principal",
    "statementId"
  ]
}