Amazon OpenSearch Service API · Schema
StorageTypeLimit
Limits that are applicable for given storage type.
AnalyticsElasticsearchSearch
Properties
| Name | Type | Description |
|---|---|---|
| LimitName | object | |
| LimitValues | 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-storage-type-limit-schema.json",
"title": "StorageTypeLimit",
"description": "Limits that are applicable for given storage type. ",
"type": "object",
"properties": {
"LimitName": {
"allOf": [
{
"$ref": "#/components/schemas/LimitName"
},
{
"description": " Name of storage limits that are applicable for given storage type. If <code> <a>StorageType</a> </code> is ebs, following storage options are applicable <ol> <li>MinimumVolumeSize</li> Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. <li>MaximumVolumeSize</li> Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. <li>MaximumIops</li> Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. <li>MinimumIops</li> Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. <li>MaximumThroughput</li> Maximum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable. <li>MinimumThroughput</li> Minimum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable. </ol> "
}
]
},
"LimitValues": {
"allOf": [
{
"$ref": "#/components/schemas/LimitValueList"
},
{
"description": " Values for the <code> <a>StorageTypeLimit$LimitName</a> </code> . "
}
]
}
}
}