You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

search_aggs_bucket_count_thresholds.go 417B

12345678910111213
  1. // Copyright 2012-present Oliver Eilhard. All rights reserved.
  2. // Use of this source code is governed by a MIT-license.
  3. // See http://olivere.mit-license.org/license.txt for details.
  4. package elastic
  5. // BucketCountThresholds is used in e.g. terms and significant text aggregations.
  6. type BucketCountThresholds struct {
  7. MinDocCount *int64
  8. ShardMinDocCount *int64
  9. RequiredSize *int
  10. ShardSize *int
  11. }