Show / Hide Table of Contents

Class CfnDomain.NodeOptionProperty

Configuration settings for defining the node type within a cluster.

Inheritance
object
CfnDomain.NodeOptionProperty
Implements
CfnDomain.INodeOptionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html#cfn-opensearchservice-domain-nodeoption-nodeconfig

NodeType

Defines the type of node, such as coordinating nodes.

public string? NodeType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html#cfn-opensearchservice-domain-nodeoption-nodetype

Implements

CfnDomain.INodeOptionProperty
Back to top Generated by DocFX