Amazon Signer · Schema

ListSigningPlatformsResponse

ListSigningPlatformsResponse schema from AWS Signer API

Code SigningIoTLambdaSecurity

Properties

Name Type Description
platforms object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-signer-list-signing-platforms-response-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-list-signing-platforms-response-schema.json",
  "title": "ListSigningPlatformsResponse",
  "description": "ListSigningPlatformsResponse schema from AWS Signer API",
  "type": "object",
  "properties": {
    "platforms": {
      "allOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/SigningPlatform"
          }
        },
        {
          "description": "A list of all platforms that match the request parameters."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Value for specifying the next set of paginated results to return."
        }
      ]
    }
  }
}