interface NodeConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.OpenSearchService.CfnDomain.NodeConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#CfnDomain_NodeConfigProperty |
![]() | software.amazon.awscdk.services.opensearchservice.CfnDomain.NodeConfigProperty |
![]() | aws_cdk.aws_opensearchservice.CfnDomain.NodeConfigProperty |
![]() | aws-cdk-lib » aws_opensearchservice » CfnDomain » NodeConfigProperty |
Container for specifying configuration of any node type.
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 particular node type in the cluster. |
enabled? | boolean | IResolvable | A boolean that indicates whether a particular node type is enabled or not. |
type? | string | The instance type of a particular node type in the cluster. |
count?
Type:
number
(optional)
The number of nodes of a particular node type in the cluster.
enabled?
Type:
boolean |
IResolvable
(optional)
A boolean that indicates whether a particular node type is enabled or not.
type?
Type:
string
(optional)
The instance type of a particular node type in the cluster.