aws-cdk-lib.aws_fsx.CfnFileSystem.DiskIopsConfigurationProperty

interface DiskIopsConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.FSx.CfnFileSystem.DiskIopsConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnFileSystem_DiskIopsConfigurationProperty
Javasoftware.amazon.awscdk.services.fsx.CfnFileSystem.DiskIopsConfigurationProperty
Pythonaws_cdk.aws_fsx.CfnFileSystem.DiskIopsConfigurationProperty
TypeScript aws-cdk-lib » aws_fsx » CfnFileSystem » DiskIopsConfigurationProperty

The SSD IOPS (input/output operations per second) configuration for an Amazon FSx for NetApp ONTAP 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).

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fsx as fsx } from 'aws-cdk-lib';
const diskIopsConfigurationProperty: fsx.CfnFileSystem.DiskIopsConfigurationProperty = {
  iops: 123,
  mode: 'mode',
};

Properties

NameTypeDescription
iops?numberThe total number of SSD IOPS provisioned for the file system.
mode?stringSpecifies 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.

iops?

Type: number (optional)

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


mode?

Type: string (optional)

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.