Amazon OpenSearch Service API · Schema
DryRunResults
DryRunResults schema from Amazon OpenSearch Service API
AnalyticsElasticsearchSearch
Properties
| Name | Type | Description |
|---|---|---|
| DeploymentType | object | |
| Message | 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-dry-run-results-schema.json",
"title": "DryRunResults",
"description": "DryRunResults schema from Amazon OpenSearch Service API",
"type": "object",
"properties": {
"DeploymentType": {
"allOf": [
{
"$ref": "#/components/schemas/DeploymentType"
},
{
"description": " Specifies the deployment mechanism through which the update shall be applied on the domain. Possible responses are <code>Blue/Green</code> (The update will require a blue/green deployment.) <code>DynamicUpdate</code> (The update can be applied in-place without a Blue/Green deployment required.) <code>Undetermined</code> (The domain is undergoing an update which needs to complete before the deployment type can be predicted.) <code>None</code> (The configuration change matches the current configuration and will not result in any update.) "
}
]
},
"Message": {
"allOf": [
{
"$ref": "#/components/schemas/Message"
},
{
"description": "Contains an optional message associated with the DryRunResults."
}
]
}
}
}