Amazon CodeStar · Schema

ListResourcesResult

ListResourcesResult schema from AWS CodeStar API

Developer ToolsDevOpsProject ManagementTeam Collaboration

Properties

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

JSON Schema

codestar-list-resources-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-list-resources-result-schema.json",
  "title": "ListResourcesResult",
  "description": "ListResourcesResult schema from AWS CodeStar API",
  "type": "object",
  "properties": {
    "resources": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourcesResult"
        },
        {
          "description": "An array of resources associated with the project. "
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "The continuation token to use when requesting the next set of results, if there are more results to be returned."
        }
      ]
    }
  }
}