Amazon CodeBuild · JSON Structure

Amazon Codebuild List Projects Input Structure

ListProjectsInput schema from Amazon CodeBuild

Type: object Properties: 3
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

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

Properties

sortBy sortOrder nextToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-list-projects-input-structure.json",
  "name": "ListProjectsInput",
  "description": "ListProjectsInput schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "sortBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectSortByType"
        },
        {
          "description": "<p>The criterion to be used to list build project names. Valid values include:</p> <ul> <li> <p> <code>CREATED_TIME</code>: List based on when each build project was created.</p> </li> <li> <p> <code>LAST_MODIFIED_TIME</code>: List based on when information about each build project was last changed.</p> </li> <li> <p> <code>NAME</code>: List based on each build project's name.</p> </li> </ul> <p>Use <code>sortOrder</code> to specify in what order to list the build project names based on the preceding criteria.</p>"
        }
      ]
    },
    "sortOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SortOrderType"
        },
        {
          "description": "<p>The order in which to list build projects. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List in ascending order.</p> </li> <li> <p> <code>DESCENDING</code>: List in descending order.</p> </li> </ul> <p>Use <code>sortBy</code> to specify the criterion to be used to list build project names.</p>"
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>nextToken</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned."
        }
      ]
    }
  }
}