Amazon Signer · JSON Structure

Amazon Signer List Profile Permissions Response Structure

ListProfilePermissionsResponse schema from AWS Signer API

Type: object Properties: 4
Code SigningIoTLambdaSecurity

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

Properties

revisionId policySizeBytes permissions nextToken

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-list-profile-permissions-response-structure.json",
  "name": "ListProfilePermissionsResponse",
  "description": "ListProfilePermissionsResponse schema from AWS Signer API",
  "properties": {
    "revisionId": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "The identifier for the current revision of profile permissions."
        }
      ]
    },
    "policySizeBytes": {
      "allOf": [
        {
          "type": "int32"
        },
        {
          "description": "Total size of the policy associated with the Signing Profile in bytes."
        }
      ]
    },
    "permissions": {
      "allOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/Permission"
          }
        },
        {
          "description": "List of permissions associated with the Signing Profile."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "String for specifying the next set of paginated results."
        }
      ]
    }
  }
}