Amazon Signer · Schema

ListSigningProfilesResponse

ListSigningProfilesResponse schema from AWS Signer API

Code SigningIoTLambdaSecurity

Properties

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

JSON Schema

amazon-signer-list-signing-profiles-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-profiles-response-schema.json",
  "title": "ListSigningProfilesResponse",
  "description": "ListSigningProfilesResponse schema from AWS Signer API",
  "type": "object",
  "properties": {
    "profiles": {
      "allOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/SigningProfile"
          }
        },
        {
          "description": "A list of profiles that are available in the AWS account. This includes profiles with the status of <code>CANCELED</code> if the <code>includeCanceled</code> parameter is set to <code>true</code>."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "Value for specifying the next set of paginated results to return."
        }
      ]
    }
  }
}