Amazon OpenSearch Service API · Schema
ChangeProgressStage
A progress stage details of a specific domain configuration change.
AnalyticsElasticsearchSearch
Properties
| Name | Type | Description |
|---|---|---|
| Name | object | |
| Status | object | |
| Description | object | |
| LastUpdated | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-change-progress-stage-schema.json",
"title": "ChangeProgressStage",
"description": "A progress stage details of a specific domain configuration change.",
"type": "object",
"properties": {
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/ChangeProgressStageName"
},
{
"description": "The name of the specific progress stage."
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/ChangeProgressStageStatus"
},
{
"description": "The overall status of a specific progress stage."
}
]
},
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "The description of the progress stage."
}
]
},
"LastUpdated": {
"allOf": [
{
"$ref": "#/components/schemas/LastUpdated"
},
{
"description": "The last updated timestamp of the progress stage."
}
]
}
}
}