Interface CfnDomainPropsMixin.IEBSOptionsProperty
The configurations of Amazon Elastic Block Store (Amazon EBS) volumes that are attached to data nodes in the OpenSearch Service domain.
Namespace: Amazon.CDK.Mixins.Preview.AWS.OpenSearchService.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDomainPropsMixin.IEBSOptionsProperty
Syntax (vb)
Public Interface CfnDomainPropsMixin.IEBSOptionsProperty
Remarks
For more information, see EBS volume size limits in the Amazon OpenSearch Service Developer Guide .
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.Mixins.Preview.AWS.OpenSearchService.Mixins;
var eBSOptionsProperty = new EBSOptionsProperty {
EbsEnabled = false,
Iops = 123,
Throughput = 123,
VolumeSize = 123,
VolumeType = "volumeType"
};
Synopsis
Properties
| EbsEnabled | Specifies whether Amazon EBS volumes are attached to data nodes in the OpenSearch Service domain. |
| Iops | The number of I/O operations per second (IOPS) that the volume supports. |
| Throughput | The throughput (in MiB/s) of the EBS volumes attached to data nodes. |
| VolumeSize | The size (in GiB) of the EBS volume for each data node. |
| VolumeType | The EBS volume type to use with the OpenSearch Service domain. |
Properties
EbsEnabled
Specifies whether Amazon EBS volumes are attached to data nodes in the OpenSearch Service domain.
object? EbsEnabled { get; }
Property Value
Remarks
Iops
The number of I/O operations per second (IOPS) that the volume supports.
double? Iops { get; }
Property Value
Remarks
This property applies only to the gp3 and provisioned IOPS EBS volume types.
Throughput
The throughput (in MiB/s) of the EBS volumes attached to data nodes.
double? Throughput { get; }
Property Value
Remarks
Applies only to the gp3 volume type.
VolumeSize
The size (in GiB) of the EBS volume for each data node.
double? VolumeSize { get; }
Property Value
Remarks
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 more information, see EBS volume size limits in the Amazon OpenSearch Service Developer Guide .
VolumeType
The EBS volume type to use with the OpenSearch Service domain.
string? VolumeType { get; }
Property Value
Remarks
If you choose gp3 , you must also specify values for Iops and Throughput . For more information about each type, see Amazon EBS volume types in the Amazon EC2 User Guide for Linux Instances .