Class CfnFileSystem.MetadataConfigurationProperty
The configuration that allows you to specify the performance of metadata operations for an FSx for Lustre file system.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFileSystem.MetadataConfigurationProperty : CfnFileSystem.IMetadataConfigurationProperty
Syntax (vb)
Public Class CfnFileSystem.MetadataConfigurationProperty Implements CfnFileSystem.IMetadataConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.FSx;
var metadataConfigurationProperty = new MetadataConfigurationProperty {
Iops = 123,
Mode = "mode"
};
Synopsis
Constructors
| MetadataConfigurationProperty() | The configuration that allows you to specify the performance of metadata operations for an FSx for Lustre file system. |
Properties
| Iops | The number of Metadata IOPS provisioned for the file system. |
| Mode | Specifies whether the file system is using the AUTOMATIC setting of metadata IOPS or if it is using a USER_PROVISIONED value. |
Constructors
MetadataConfigurationProperty()
The configuration that allows you to specify the performance of metadata operations for an FSx for Lustre file system.
public MetadataConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.FSx;
var metadataConfigurationProperty = new MetadataConfigurationProperty {
Iops = 123,
Mode = "mode"
};
Properties
Iops
The number of Metadata IOPS provisioned for the file system.
public double? Iops { get; set; }
Property Value
Remarks
Mode
Specifies whether the file system is using the AUTOMATIC setting of metadata IOPS or if it is using a USER_PROVISIONED value.
public string? Mode { get; set; }