ListEnvironmentsResponse

ListEnvironmentsResponse schema from AWS Mainframe Modernization API

COBOLMainframeMigrationModernizationBatch Processing

Properties

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

JSON Schema

amazon-mainframe-modernization-list-environments-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-list-environments-response-schema.json",
  "title": "ListEnvironmentsResponse",
  "description": "ListEnvironmentsResponse schema from AWS Mainframe Modernization API",
  "type": "object",
  "properties": {
    "environments": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnvironmentSummaryList"
        },
        {
          "description": "Returns a list of summary details for all the runtime environments in your account. "
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A pagination token that's returned when the response doesn't contain all the runtime environments."
        }
      ]
    }
  },
  "required": [
    "environments"
  ]
}