Amazon Proton · Schema

ListServiceInstanceOutputsInput

ListServiceInstanceOutputsInput schema from Amazon Proton API

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
nextToken object
serviceInstanceName object
serviceName object
View JSON Schema on GitHub

JSON Schema

amazon-proton-list-service-instance-outputs-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-service-instance-outputs-input-schema.json",
  "title": "ListServiceInstanceOutputsInput",
  "description": "ListServiceInstanceOutputsInput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmptyNextToken"
        },
        {
          "description": "A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested."
        }
      ]
    },
    "serviceInstanceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the service instance whose outputs you want."
        }
      ]
    },
    "serviceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the service that <code>serviceInstanceName</code> is associated to."
        }
      ]
    }
  },
  "required": [
    "serviceInstanceName",
    "serviceName"
  ]
}