ClusterConfig constructor

ClusterConfig({
  1. ColdStorageOptions? coldStorageOptions,
  2. int? dedicatedMasterCount,
  3. bool? dedicatedMasterEnabled,
  4. OpenSearchPartitionInstanceType? dedicatedMasterType,
  5. int? instanceCount,
  6. OpenSearchPartitionInstanceType? instanceType,
  7. int? warmCount,
  8. bool? warmEnabled,
  9. OpenSearchWarmPartitionInstanceType? warmType,
  10. ZoneAwarenessConfig? zoneAwarenessConfig,
  11. bool? zoneAwarenessEnabled,
})

Implementation

ClusterConfig({
  this.coldStorageOptions,
  this.dedicatedMasterCount,
  this.dedicatedMasterEnabled,
  this.dedicatedMasterType,
  this.instanceCount,
  this.instanceType,
  this.warmCount,
  this.warmEnabled,
  this.warmType,
  this.zoneAwarenessConfig,
  this.zoneAwarenessEnabled,
});