interface MetadataConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnFileSystemPropsMixin.MetadataConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnFileSystemPropsMixin_MetadataConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnFileSystemPropsMixin.MetadataConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnFileSystemPropsMixin.MetadataConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnFileSystemPropsMixin » MetadataConfigurationProperty |
The configuration that allows you to specify the performance of metadata operations for an FSx for Lustre file system.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const metadataConfigurationProperty: fsx_mixins.CfnFileSystemPropsMixin.MetadataConfigurationProperty = {
iops: 123,
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| iops? | number | The number of Metadata IOPS provisioned for the file system. |
| mode? | string | Specifies whether the file system is using the AUTOMATIC setting of metadata IOPS or if it is using a USER_PROVISIONED value. |
iops?
Type:
number
(optional)
The number of Metadata IOPS provisioned for the file system.
mode?
Type:
string
(optional)
Specifies whether the file system is using the AUTOMATIC setting of metadata IOPS or if it is using a USER_PROVISIONED value.

.NET
Go
Java
Python
TypeScript