Amazon Well-Architected Tool · Schema
UpdateAnswerInput
Input to update answer.
ArchitectureBest PracticesCloud GovernanceWell-ArchitectedWorkloads
Properties
| Name | Type | Description |
|---|---|---|
| SelectedChoices | object | |
| ChoiceUpdates | object | |
| Notes | object | |
| IsApplicable | object | |
| Reason | object |
JSON Schema
{
"type": "object",
"title": "UpdateAnswerInput",
"properties": {
"SelectedChoices": {
"$ref": "#/components/schemas/SelectedChoices"
},
"ChoiceUpdates": {
"allOf": [
{
"$ref": "#/components/schemas/ChoiceUpdates"
},
{
"description": "A list of choices to update on a question in your workload. The String key corresponds to the choice ID to be updated."
}
]
},
"Notes": {
"$ref": "#/components/schemas/Notes"
},
"IsApplicable": {
"$ref": "#/components/schemas/IsApplicable"
},
"Reason": {
"allOf": [
{
"$ref": "#/components/schemas/AnswerReason"
},
{
"description": "The reason why a question is not applicable to your workload."
}
]
}
},
"description": "Input to update answer.",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-well-architected-tool/refs/heads/main/json-schema/well-architected-tool-update-answer-input-schema.json"
}