interface NodeConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.OpenSearchService.CfnDomain.NodeConfigProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#CfnDomain_NodeConfigProperty | 
|  Java | software.amazon.awscdk.services.opensearchservice.CfnDomain.NodeConfigProperty | 
|  Python | aws_cdk.aws_opensearchservice.CfnDomain.NodeConfigProperty | 
|  TypeScript | aws-cdk-lib»aws_opensearchservice»CfnDomain»NodeConfigProperty | 
Configuration options for defining the setup of any node type within the cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as opensearchservice } from 'aws-cdk-lib';
const nodeConfigProperty: opensearchservice.CfnDomain.NodeConfigProperty = {
  count: 123,
  enabled: false,
  type: 'type',
};
Properties
| Name | Type | Description | 
|---|---|---|
| count? | number | The number of nodes of a specific type within the cluster. | 
| enabled? | boolean | IResolvable | A boolean value indicating whether a specific node type is active or inactive. | 
| type? | string | The instance type of a particular node within the cluster. | 
count?
Type:
number
(optional)
The number of nodes of a specific type within the cluster.
enabled?
Type:
boolean | IResolvable
(optional)
A boolean value indicating whether a specific node type is active or inactive.
type?
Type:
string
(optional)
The instance type of a particular node within the cluster.
