Show / Hide Table of Contents

Class DomainClusterConfigArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DomainClusterConfigArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.ElasticSearch.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class DomainClusterConfigArgs : ResourceArgs

Constructors

View Source

DomainClusterConfigArgs()

Declaration
public DomainClusterConfigArgs()

Properties

View Source

DedicatedMasterCount

Number of dedicated master nodes in the cluster

Declaration
public Input<int> DedicatedMasterCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

DedicatedMasterEnabled

Indicates whether dedicated master nodes are enabled for the cluster.

Declaration
public Input<bool> DedicatedMasterEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

DedicatedMasterType

Instance type of the dedicated master nodes in the cluster.

Declaration
public Input<string> DedicatedMasterType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

InstanceCount

Number of instances in the cluster.

Declaration
public Input<int> InstanceCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

InstanceType

Instance type of data nodes in the cluster.

Declaration
public Input<string> InstanceType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ZoneAwarenessConfig

Configuration block containing zone awareness settings. Documented below.

Declaration
public Input<DomainClusterConfigZoneAwarenessConfigArgs> ZoneAwarenessConfig { get; set; }
Property Value
Type Description
Input<DomainClusterConfigZoneAwarenessConfigArgs>
View Source

ZoneAwarenessEnabled

Indicates whether zone awareness is enabled, set to true for multi-az deployment. To enable awareness with three Availability Zones, the availability_zone_count within the zone_awareness_config must be set to 3.

Declaration
public Input<bool> ZoneAwarenessEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.