interface FSxLustreConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnClusterPropsMixin.FSxLustreConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnClusterPropsMixin_FSxLustreConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnClusterPropsMixin.FSxLustreConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnClusterPropsMixin.FSxLustreConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnClusterPropsMixin » FSxLustreConfigProperty |
Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const fSxLustreConfigProperty: sagemaker_mixins.CfnClusterPropsMixin.FSxLustreConfigProperty = {
perUnitStorageThroughput: 123,
sizeInGiB: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| per | number | The throughput capacity of the Amazon FSx for Lustre file system, measured in MB/s per TiB of storage. |
| size | number | The storage capacity of the Amazon FSx for Lustre file system, specified in gibibytes (GiB). |
perUnitStorageThroughput?
Type:
number
(optional)
The throughput capacity of the Amazon FSx for Lustre file system, measured in MB/s per TiB of storage.
sizeInGiB?
Type:
number
(optional)
The storage capacity of the Amazon FSx for Lustre file system, specified in gibibytes (GiB).

.NET
Go
Java
Python
TypeScript