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 or Amazon FSx for OpenZFS file system. 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).
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 number of IOPS for the file system is using the system default (‘AUTOMATIC`) or was provisioned by the customer (`USER_PROVISIONED`).
Instance Attribute Details
#iops ⇒ Integer
The total number of SSD IOPS provisioned for the file system.
4635 4636 4637 4638 4639 4640 |
# File 'lib/aws-sdk-fsx/types.rb', line 4635 class DiskIopsConfiguration < Struct.new( :mode, :iops) SENSITIVE = [] include Aws::Structure end |
#mode ⇒ String
Specifies whether the number of IOPS for the file system is using the system default (‘AUTOMATIC`) or was provisioned by the customer (`USER_PROVISIONED`).
4635 4636 4637 4638 4639 4640 |
# File 'lib/aws-sdk-fsx/types.rb', line 4635 class DiskIopsConfiguration < Struct.new( :mode, :iops) SENSITIVE = [] include Aws::Structure end |