Class CfnClusterPropsMixin.SharedEnvironmentConfigProperty
The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnClusterPropsMixin.SharedEnvironmentConfigProperty : CfnClusterPropsMixin.ISharedEnvironmentConfigProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.SharedEnvironmentConfigProperty Implements CfnClusterPropsMixin.ISharedEnvironmentConfigProperty
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.CfnPropertyMixins.AWS.SageMaker;
var sharedEnvironmentConfigProperty = new SharedEnvironmentConfigProperty {
FSxLustreConfig = new FSxLustreConfigProperty {
PerUnitStorageThroughput = 123,
SizeInGiB = 123
},
FSxLustreDeletionPolicy = "fSxLustreDeletionPolicy"
};
Synopsis
Constructors
| SharedEnvironmentConfigProperty() | The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage. |
Properties
| FSxLustreConfig | Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster. |
| FSxLustreDeletionPolicy | The deletion policy for the shared FSx Lustre file system. |
Constructors
SharedEnvironmentConfigProperty()
The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage.
public SharedEnvironmentConfigProperty()
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.CfnPropertyMixins.AWS.SageMaker;
var sharedEnvironmentConfigProperty = new SharedEnvironmentConfigProperty {
FSxLustreConfig = new FSxLustreConfigProperty {
PerUnitStorageThroughput = 123,
SizeInGiB = 123
},
FSxLustreDeletionPolicy = "fSxLustreDeletionPolicy"
};
Properties
FSxLustreConfig
Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster.
public object? FSxLustreConfig { get; set; }
Property Value
Remarks
FSxLustreDeletionPolicy
The deletion policy for the shared FSx Lustre file system.
public string? FSxLustreDeletionPolicy { get; set; }
Property Value
Remarks
Keep retains the FSx when RIGs are deleted. DeleteIfNotUsed deletes the FSx when no RIGs reference it.