Class: Aws::FSx::Types::DiskIopsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DiskIopsConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fsx/types.rb
Overview
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. 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).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iops ⇒ Integer
The total number of SSD IOPS provisioned for the file system.
-
#mode ⇒ String
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.
Instance Attribute Details
#iops ⇒ Integer
The total number of SSD IOPS provisioned for the file system.
4914 4915 4916 4917 4918 4919 |
# File 'lib/aws-sdk-fsx/types.rb', line 4914 class DiskIopsConfiguration < Struct.new( :mode, :iops) SENSITIVE = [] include Aws::Structure end |
#mode ⇒ String
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.
4914 4915 4916 4917 4918 4919 |
# File 'lib/aws-sdk-fsx/types.rb', line 4914 class DiskIopsConfiguration < Struct.new( :mode, :iops) SENSITIVE = [] include Aws::Structure end |