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