interface EbsOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.OpenSearchService.EbsOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#EbsOptions |
![]() | software.amazon.awscdk.services.opensearchservice.EbsOptions |
![]() | aws_cdk.aws_opensearchservice.EbsOptions |
![]() | aws-cdk-lib » aws_opensearchservice » EbsOptions |
The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the Amazon OpenSearch Service domain.
For more information, see Amazon EBS in the Amazon Elastic Compute Cloud Developer Guide.
Example
const domain = new Domain(this, 'Domain', {
version: EngineVersion.OPENSEARCH_1_0,
ebs: {
volumeSize: 100,
volumeType: ec2.EbsDeviceVolumeType.GENERAL_PURPOSE_SSD,
},
nodeToNodeEncryption: true,
encryptionAtRest: {
enabled: true,
},
});
Properties
Name | Type | Description |
---|---|---|
enabled? | boolean | Specifies whether Amazon EBS volumes are attached to data nodes in the Amazon OpenSearch Service domain. |
iops? | number | The number of I/O operations per second (IOPS) that the volume supports. |
throughput? | number | The throughput (in MiB/s) of the EBS volumes attached to data nodes. |
volume | number | The size (in GiB) of the EBS volume for each data node. |
volume | Ebs | The EBS volume type to use with the Amazon OpenSearch Service domain, such as standard, gp2, io1. |
enabled?
Type:
boolean
(optional, default: true)
Specifies whether Amazon EBS volumes are attached to data nodes in the Amazon OpenSearch Service domain.
iops?
Type:
number
(optional, default: iops are not set.)
The number of I/O operations per second (IOPS) that the volume supports.
This property applies only to the gp3 and Provisioned IOPS (SSD) EBS volume type.
throughput?
Type:
number
(optional, default: throughput is not set.)
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
This property applies only to the gp3 volume type.
volumeSize?
Type:
number
(optional, default: 10)
The size (in GiB) of the EBS volume for each data node.
The minimum and maximum size of an EBS volume depends on the EBS volume type and the instance type to which it is attached. For valid values, see EBS volume size limits in the Amazon OpenSearch Service Developer Guide.
volumeType?
Type:
Ebs
(optional, default: gp2)
The EBS volume type to use with the Amazon OpenSearch Service domain, such as standard, gp2, io1.