Amazon Proton · Schema

ListEnvironmentProvisionedResourcesInput

ListEnvironmentProvisionedResourcesInput schema from Amazon Proton API

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

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

JSON Schema

amazon-proton-list-environment-provisioned-resources-input-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-environment-provisioned-resources-input-schema.json",
  "title": "ListEnvironmentProvisionedResourcesInput",
  "description": "ListEnvironmentProvisionedResourcesInput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "environmentName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The environment name."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmptyNextToken"
        },
        {
          "description": "A token that indicates the location of the next environment provisioned resource in the array of environment provisioned resources, after the list of environment provisioned resources that was previously requested."
        }
      ]
    }
  },
  "required": [
    "environmentName"
  ]
}