ListPipesResponse

ListPipesResponse schema from Amazon EventBridge Pipes

Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

Properties

Name Type Description
NextToken object
Pipes object
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-pipes-list-pipes-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-schema/amazon-eventbridge-pipes-list-pipes-response-schema.json",
  "title": "ListPipesResponse",
  "description": "ListPipesResponse schema from Amazon EventBridge Pipes",
  "type": "object",
  "properties": {
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error."
        }
      ]
    },
    "Pipes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipeList"
        },
        {
          "description": "The pipes returned by the call."
        }
      ]
    }
  }
}