Module Values.AwsOpenSearchServiceDomainClusterConfigDetailsSource

Details about the configuration of an OpenSearch cluster.

Sourcetype nonrec t = {
  1. instanceCount : Integer.t option;
    (*

    The number of data nodes to use in the OpenSearch domain.

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

    Whether UltraWarm is enabled.

    *)
  3. warmCount : Integer.t option;
    (*

    The number of UltraWarm instances.

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

    Whether to use a dedicated master node for the OpenSearch domain. A dedicated master node performs cluster management tasks, but does not hold data or respond to data upload requests.

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

    Configuration options for zone awareness. Provided if ZoneAwarenessEnabled is true.

    *)
  6. dedicatedMasterCount : Integer.t option;
    (*

    The number of instances to use for the master node. If this attribute is specified, then DedicatedMasterEnabled must be true.

    *)
  7. instanceType : NonEmptyString.t option;
    (*

    The instance type for your data nodes. For a list of valid values, see Supported instance types in Amazon OpenSearch Service in the Amazon OpenSearch Service Developer Guide.

    *)
  8. warmType : NonEmptyString.t option;
    (*

    The type of UltraWarm instance.

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

    Whether to enable zone awareness for the OpenSearch domain. When zone awareness is enabled, OpenSearch Service allocates the cluster's nodes and replica index shards across Availability Zones (AZs) in the same Region. This prevents data loss and minimizes downtime if a node or data center fails.

    *)
  10. dedicatedMasterType : NonEmptyString.t option;
    (*

    The hardware configuration of the computer that hosts the dedicated master node. If this attribute is specified, then DedicatedMasterEnabled must be true.

    *)
}
Sourceval make : ?instanceCount:??? -> ?warmEnabled:??? -> ?warmCount:??? -> ?dedicatedMasterEnabled:??? -> ?zoneAwarenessConfig:??? -> ?dedicatedMasterCount:??? -> ?instanceType:??? -> ?warmType:??? -> ?zoneAwarenessEnabled:??? -> ?dedicatedMasterType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.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