Class: Aws::FSx::Types::DiskIopsConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#iopsInteger

The total number of SSD IOPS provisioned for the file system.

Returns:

  • (Integer)


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

#modeString

Specifies whether the number of IOPS for the file system is using the system default (‘AUTOMATIC`) or was provisioned by the customer (`USER_PROVISIONED`).

Returns:

  • (String)


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