Class CfnDomain.NodeOptionProperty
Configuration settings for defining the node type within a cluster.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.OpenSearchService
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomain.NodeOptionProperty : CfnDomain.INodeOptionProperty
Syntax (vb)
Public Class CfnDomain.NodeOptionProperty Implements CfnDomain.INodeOptionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.OpenSearchService;
var nodeOptionProperty = new NodeOptionProperty {
NodeConfig = new NodeConfigProperty {
Count = 123,
Enabled = false,
Type = "type"
},
NodeType = "nodeType"
};
Synopsis
Constructors
NodeOptionProperty() | Configuration settings for defining the node type within a cluster. |
Properties
NodeConfig | Configuration options for defining the setup of any node type. |
NodeType | Defines the type of node, such as coordinating nodes. |
Constructors
NodeOptionProperty()
Configuration settings for defining the node type within a cluster.
public NodeOptionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.OpenSearchService;
var nodeOptionProperty = new NodeOptionProperty {
NodeConfig = new NodeConfigProperty {
Count = 123,
Enabled = false,
Type = "type"
},
NodeType = "nodeType"
};
Properties
NodeConfig
Configuration options for defining the setup of any node type.
public object? NodeConfig { get; set; }
Property Value
Remarks
NodeType
Defines the type of node, such as coordinating nodes.
public string? NodeType { get; set; }