Interface CfnCluster.ClusterFsxLustreConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.ClusterFsxLustreConfigProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.ClusterFsxLustreConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration for mounting an Amazon FSx Lustre file system to the instances in the SageMaker HyperPod cluster instance group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 ClusterFsxLustreConfigProperty clusterFsxLustreConfigProperty = ClusterFsxLustreConfigProperty.builder()
         .dnsName("dnsName")
         .mountName("mountName")
         // the properties below are optional
         .mountPath("mountPath")
         .build();
 

See Also: