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

ClusterConfig

import type { ClusterConfig } from "https://aws-api.deno.dev/v0.3/services/opensearch.ts?docs=full";

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

interface ClusterConfig {
ColdStorageOptions?: ColdStorageOptions | null;
DedicatedMasterCount?: number | null;
DedicatedMasterEnabled?: boolean | null;
DedicatedMasterType?: OpenSearchPartitionInstanceType | null;
InstanceCount?: number | null;
InstanceType?: OpenSearchPartitionInstanceType | null;
WarmCount?: number | null;
WarmEnabled?: boolean | null;
ZoneAwarenessConfig?: ZoneAwarenessConfig | null;
ZoneAwarenessEnabled?: boolean | null;
}

§Properties

§
ColdStorageOptions?: ColdStorageOptions | null
[src]

Specifies the ColdStorageOptions config for a 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 Dedicated master nodes in Amazon OpenSearch Service for more information.

§
DedicatedMasterType?: OpenSearchPartitionInstanceType | null
[src]

The instance type for a dedicated master node.

§
InstanceCount?: number | null
[src]

The number of instances in the specified domain cluster.

§

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

§
WarmCount?: number | null
[src]

The number of UltraWarm nodes in the cluster.

§
WarmEnabled?: boolean | null
[src]

True to enable UltraWarm storage.

§

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

§
ZoneAwarenessConfig?: ZoneAwarenessConfig | null
[src]

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 Configuring a multi-AZ domain in Amazon OpenSearch Service for more information.