Class: Aws::FSx::Types::FileSystemLustreMetadataConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb

Overview

The Lustre metadata performance configuration of an Amazon FSx for Lustre file system using a PERSISTENT_2 deployment type. The configuration enables the file system to support increasing metadata performance.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#iopsInteger

The number of Metadata IOPS provisioned for the file system. Valid values are 1500, 3000, 6000, 12000, and multiples of 12000 up to a maximum of 192000.

Returns:

  • (Integer)


6174
6175
6176
6177
6178
6179
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 6174

class FileSystemLustreMetadataConfiguration < Struct.new(
  :iops,
  :mode)
  SENSITIVE = []
  include Aws::Structure
end

#modeString

The metadata configuration mode for provisioning Metadata IOPS for the file system.

  • In AUTOMATIC mode, FSx for Lustre automatically provisions and scales the number of Metadata IOPS on your file system based on your file system storage capacity.

  • In USER_PROVISIONED mode, you can choose to specify the number of Metadata IOPS to provision for your file system.

Returns:

  • (String)


6174
6175
6176
6177
6178
6179
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 6174

class FileSystemLustreMetadataConfiguration < Struct.new(
  :iops,
  :mode)
  SENSITIVE = []
  include Aws::Structure
end