Amazon Proton · Schema

ListTagsForResourceOutput

ListTagsForResourceOutput schema from Amazon Proton API

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

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

JSON Schema

amazon-proton-list-tags-for-resource-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-list-tags-for-resource-output-schema.json",
  "title": "ListTagsForResourceOutput",
  "description": "ListTagsForResourceOutput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "A token that indicates the location of the next resource tag in the array of resource tags, after the current requested list of resource tags."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "A list of resource tags with detail data."
        }
      ]
    }
  },
  "required": [
    "tags"
  ]
}