Show / Hide Table of Contents

Class CfnClusterPropsMixin.SharedEnvironmentConfigProperty

The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage.

Inheritance
object
CfnClusterPropsMixin.SharedEnvironmentConfigProperty
Implements
CfnClusterPropsMixin.ISharedEnvironmentConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-sharedenvironmentconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-sharedenvironmentconfig.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-sharedenvironmentconfig.html#cfn-sagemaker-cluster-sharedenvironmentconfig-fsxlustreconfig

Type union: either IResolvable or CfnClusterPropsMixin.IFSxLustreConfigProperty

FSxLustreDeletionPolicy

The deletion policy for the shared FSx Lustre file system.

public string? FSxLustreDeletionPolicy { get; set; }
Property Value

string

Remarks

Keep retains the FSx when RIGs are deleted. DeleteIfNotUsed deletes the FSx when no RIGs reference it.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-sharedenvironmentconfig.html#cfn-sagemaker-cluster-sharedenvironmentconfig-fsxlustredeletionpolicy

Implements

CfnClusterPropsMixin.ISharedEnvironmentConfigProperty
Back to top Generated by DocFX