DescribeReservedElasticsearchInstanceOfferingsResponse

Container for results from DescribeReservedElasticsearchInstanceOfferings

AnalyticsElasticsearchSearch

Properties

Name Type Description
NextToken object
ReservedElasticsearchInstanceOfferings object
View JSON Schema on GitHub

JSON Schema

openapi-describe-reserved-elasticsearch-instance-offerings-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-describe-reserved-elasticsearch-instance-offerings-response-schema.json",
  "title": "DescribeReservedElasticsearchInstanceOfferingsResponse",
  "description": "Container for results from <code>DescribeReservedElasticsearchInstanceOfferings</code>",
  "type": "object",
  "properties": {
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "Provides an identifier to allow retrieval of paginated results."
        }
      ]
    },
    "ReservedElasticsearchInstanceOfferings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReservedElasticsearchInstanceOfferingList"
        },
        {
          "description": "List of reserved Elasticsearch instance offerings"
        }
      ]
    }
  }
}