Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ElasticsearchClusterConfig

import type { ElasticsearchClusterConfig } from "https://aws-api.deno.dev/v0.4/services/es.ts?docs=full";

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

interface ElasticsearchClusterConfig {
ColdStorageOptions?: ColdStorageOptions | null;
DedicatedMasterCount?: number | null;
DedicatedMasterEnabled?: boolean | null;
DedicatedMasterType?: ESPartitionInstanceType | null;
InstanceCount?: number | null;
InstanceType?: ESPartitionInstanceType | null;
WarmCount?: number | null;
WarmEnabled?: boolean | null;
WarmType?: ESWarmPartitionInstanceType | null;
ZoneAwarenessConfig?: ZoneAwarenessConfig | null;
ZoneAwarenessEnabled?: boolean | null;
}

§Properties

§
ColdStorageOptions?: ColdStorageOptions | null
[src]

Specifies the ColdStorageOptions config for Elasticsearch Domain

§
DedicatedMasterCount?: number | null
[src]

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

§
DedicatedMasterEnabled?: boolean | null
[src]

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

§
DedicatedMasterType?: ESPartitionInstanceType | null
[src]

The instance type for a dedicated master node.

§
InstanceCount?: number | null
[src]

The number of instances in the specified domain cluster.

§
InstanceType?: ESPartitionInstanceType | null
[src]

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

§
WarmCount?: number | null
[src]

The number of warm nodes in the cluster.

§
WarmEnabled?: boolean | null
[src]

True to enable warm storage.

§

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

§
ZoneAwarenessConfig?: ZoneAwarenessConfig | null
[src]

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

§
ZoneAwarenessEnabled?: boolean | null
[src]

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