@Stability(value=Stable)
public static interface CfnFileSystem.DiskIopsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The default is 3 IOPS per GB of storage capacity, but you can provision additional IOPS per GB of storage. The configuration consists of the total number of provisioned SSD IOPS and how the amount was provisioned (by the customer or by the system).
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.fsx.*;
DiskIopsConfigurationProperty diskIopsConfigurationProperty = DiskIopsConfigurationProperty.builder()
.iops(123)
.mode("mode")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFileSystem.DiskIopsConfigurationProperty.Builder
A builder for
CfnFileSystem.DiskIopsConfigurationProperty |
static class |
CfnFileSystem.DiskIopsConfigurationProperty.Jsii$Proxy
An implementation for
CfnFileSystem.DiskIopsConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFileSystem.DiskIopsConfigurationProperty.Builder |
builder() |
default Number |
getIops()
The total number of SSD IOPS provisioned for the file system.
|
default String |
getMode()
Specifies whether the number of IOPS for the file system is using the system default ( `AUTOMATIC` ) or was provisioned by the customer ( `USER_PROVISIONED` ).
|
@Stability(value=Stable) @Nullable default Number getIops()
@Stability(value=Stable) @Nullable default String getMode()
@Stability(value=Stable) static CfnFileSystem.DiskIopsConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.