Interface CfnDomain.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.AWS.OpenSearchService
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEBSOptionsProperty
Syntax (vb)
Public Interface 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.AWS.OpenSearchService;
var eBSOptionsProperty = new EBSOptionsProperty {
EbsEnabled = false,
Iops = 123,
Throughput = 123,
VolumeSize = 123,
VolumeType = "volumeType"
};
Synopsis
Properties
Ebs |
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. |
Volume |
The size (in GiB) of the EBS volume for each data node. |
Volume |
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.
virtual object EbsEnabled { get; }
Property Value
System.
Remarks
Iops
The number of I/O operations per second (IOPS) that the volume supports.
virtual Nullable<double> Iops { get; }
Property Value
System.
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.
virtual Nullable<double> Throughput { get; }
Property Value
System.
Remarks
Applies only to the gp3
volume type.
VolumeSize
The size (in GiB) of the EBS volume for each data node.
virtual Nullable<double> VolumeSize { get; }
Property Value
System.
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.
virtual string VolumeType { get; }
Property Value
System.
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 .