Module Values.ElasticsearchClusterConfigSource

Specifies the configuration for the domain cluster, such as the type and number of instances.

Sourcetype nonrec t = {
  1. instanceType : ESPartitionInstanceType.t option;
    (*

    The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

    *)
  2. instanceCount : IntegerClass.t option;
    (*

    The number of instances in the specified domain cluster.

    *)
  3. dedicatedMasterEnabled : Boolean.t option;
    (*

    A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

    *)
  4. zoneAwarenessEnabled : Boolean.t option;
    (*

    A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

    *)
  5. zoneAwarenessConfig : ZoneAwarenessConfig.t option;
    (*

    Specifies the zone awareness configuration for a domain when zone awareness is enabled.

    *)
  6. dedicatedMasterType : ESPartitionInstanceType.t option;
    (*

    The instance type for a dedicated master node.

    *)
  7. dedicatedMasterCount : IntegerClass.t option;
    (*

    Total number of dedicated master nodes, active and on standby, for the cluster.

    *)
  8. warmEnabled : Boolean.t option;
    (*

    True to enable warm storage.

    *)
  9. warmType : ESWarmPartitionInstanceType.t option;
    (*

    The instance type for the Elasticsearch cluster's warm nodes.

    *)
  10. warmCount : IntegerClass.t option;
    (*

    The number of warm nodes in the cluster.

    *)
  11. coldStorageOptions : ColdStorageOptions.t option;
    (*

    Specifies the ColdStorageOptions config for Elasticsearch Domain

    *)
}
Sourceval make : ?instanceType:??? -> ?instanceCount:??? -> ?dedicatedMasterEnabled:??? -> ?zoneAwarenessEnabled:??? -> ?zoneAwarenessConfig:??? -> ?dedicatedMasterType:??? -> ?dedicatedMasterCount:??? -> ?warmEnabled:??? -> ?warmType:??? -> ?warmCount:??? -> ?coldStorageOptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of IntegerClass.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerClass.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t