Class CfnFileSystemPropsMixin.DiskIopsConfigurationProperty
The SSD IOPS (input/output operations per second) configuration for an Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server, or FSx for OpenZFS file system.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFileSystemPropsMixin.DiskIopsConfigurationProperty : CfnFileSystemPropsMixin.IDiskIopsConfigurationProperty
Syntax (vb)
Public Class CfnFileSystemPropsMixin.DiskIopsConfigurationProperty Implements CfnFileSystemPropsMixin.IDiskIopsConfigurationProperty
Remarks
By default, Amazon FSx automatically provisions 3 IOPS per GB of storage capacity. You can provision additional IOPS per GB of storage. The configuration consists of the total number of provisioned SSD IOPS and how it is was provisioned, or the mode (by the customer or by Amazon FSx).
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.FSx.Mixins;
var diskIopsConfigurationProperty = new DiskIopsConfigurationProperty {
Iops = 123,
Mode = "mode"
};
Synopsis
Constructors
| DiskIopsConfigurationProperty() | The SSD IOPS (input/output operations per second) configuration for an Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server, or FSx for OpenZFS file system. |
Properties
| Iops | The total number of SSD IOPS provisioned for the file system. |
| Mode | Specifies whether the file system is using the |
Constructors
DiskIopsConfigurationProperty()
The SSD IOPS (input/output operations per second) configuration for an Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server, or FSx for OpenZFS file system.
public DiskIopsConfigurationProperty()
Remarks
By default, Amazon FSx automatically provisions 3 IOPS per GB of storage capacity. You can provision additional IOPS per GB of storage. The configuration consists of the total number of provisioned SSD IOPS and how it is was provisioned, or the mode (by the customer or by Amazon FSx).
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.FSx.Mixins;
var diskIopsConfigurationProperty = new DiskIopsConfigurationProperty {
Iops = 123,
Mode = "mode"
};
Properties
Iops
The total number of SSD IOPS provisioned for the file system.
public double? Iops { get; set; }
Property Value
Remarks
The minimum and maximum values for this property depend on the value of HAPairs and StorageCapacity . The minimum value is calculated as StorageCapacity * 3 * HAPairs (3 IOPS per GB of StorageCapacity ). The maximum value is calculated as 200,000 * HAPairs .
Amazon FSx responds with an HTTP status code 400 (Bad Request) if the value of Iops is outside of the minimum or maximum values.
Mode
Specifies whether the file system is using the AUTOMATIC setting of SSD IOPS of 3 IOPS per GB of storage capacity, or if it using a USER_PROVISIONED value.
public string? Mode { get; set; }