{ "$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-create-service-instance-input-schema.json", "title": "CreateServiceInstanceInput", "description": "CreateServiceInstanceInput schema from Amazon Proton API", "type": "object", "properties": { "clientToken": { "allOf": [ { "$ref": "#/components/schemas/ClientToken" }, { "description": "The client token of the service instance to create." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The name of the service instance to create." } ] }, "serviceName": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The name of the service the service instance is added to." } ] }, "spec": { "allOf": [ { "$ref": "#/components/schemas/SpecContents" }, { "description": "The spec for the service instance you want to create." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagList" }, { "description": "
An optional list of metadata items that you can associate with the Proton service instance. A tag is a key-value pair.
For more information, see Proton resources and tagging in the Proton User Guide.
" } ] }, "templateMajorVersion": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionPart" }, { "description": "To create a new major and minor version of the service template, excludemajor Version."
}
]
},
"templateMinorVersion": {
"allOf": [
{
"$ref": "#/components/schemas/TemplateVersionPart"
},
{
"description": "To create a new minor version of the service template, include a major Version."
}
]
}
},
"required": [
"name",
"serviceName",
"spec"
]
}