interface FSxLustreConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnClusterPropsMixin.FSxLustreConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnClusterPropsMixin_FSxLustreConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnClusterPropsMixin.FSxLustreConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnClusterPropsMixin.FSxLustreConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const fSxLustreConfigProperty: sagemaker.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