Interface EbsOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EbsOptions.Jsii$Proxy
For more information, see [Configuring EBS-based Storage] (https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs) in the Amazon Elasticsearch Service Developer Guide.
Example:
Domain prodDomain = Domain.Builder.create(this, "Domain")
.version(ElasticsearchVersion.V7_1)
.capacity(CapacityConfig.builder()
.masterNodes(5)
.dataNodes(20)
.build())
.ebs(EbsOptions.builder()
.volumeSize(20)
.build())
.zoneAwareness(ZoneAwarenessConfig.builder()
.availabilityZoneCount(3)
.build())
.logging(LoggingOptions.builder()
.slowSearchLogEnabled(true)
.appLogEnabled(true)
.slowIndexLogEnabled(true)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic EbsOptions.Builderbuilder()Deprecated.default BooleanDeprecated.use opensearchservice module insteaddefault NumbergetIops()Deprecated.use opensearchservice module insteaddefault NumberDeprecated.use opensearchservice module insteaddefault EbsDeviceVolumeTypeDeprecated.use opensearchservice module insteadMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Deprecated.use opensearchservice module instead(deprecated) Specifies whether Amazon EBS volumes are attached to data nodes in the Amazon ES domain.Default: - true
-
getIops
Deprecated.use opensearchservice module instead(deprecated) The number of I/O operations per second (IOPS) that the volume supports.This property applies only to the Provisioned IOPS (SSD) EBS volume type.
Default: - iops are not set.
-
getVolumeSize
Deprecated.use opensearchservice module instead(deprecated) 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 more information, see [Configuring EBS-based Storage] (https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs) in the Amazon Elasticsearch Service Developer Guide.
Default: 10
-
getVolumeType
Deprecated.use opensearchservice module instead(deprecated) The EBS volume type to use with the Amazon ES domain, such as standard, gp2, io1.For more information, see[Configuring EBS-based Storage] (https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs) in the Amazon Elasticsearch Service Developer Guide.
Default: gp2
-
builder
Deprecated.- Returns:
- a
EbsOptions.BuilderofEbsOptions
-