interface NodeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchService.Mixins.CfnDomainPropsMixin.NodeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchservice/mixins#CfnDomainPropsMixin_NodeConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchservice.mixins.CfnDomainPropsMixin.NodeConfigProperty |
Python | aws_cdk.mixins_preview.aws_opensearchservice.mixins.CfnDomainPropsMixin.NodeConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchservice » mixins » CfnDomainPropsMixin » 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 { mixins as opensearchservice_mixins } from '@aws-cdk/mixins-preview/aws-opensearchservice';
const nodeConfigProperty: opensearchservice_mixins.CfnDomainPropsMixin.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.

.NET
Go
Java
Python
TypeScript