Show / Hide Table of Contents

Class CfnDomainPropsMixin.RSessionAppSettingsProperty

A collection of settings that apply to an RSessionGateway app.

Inheritance
object
CfnDomainPropsMixin.RSessionAppSettingsProperty
Implements
CfnDomainPropsMixin.IRSessionAppSettingsProperty
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 CfnDomainPropsMixin.RSessionAppSettingsProperty : CfnDomainPropsMixin.IRSessionAppSettingsProperty
Syntax (vb)
Public Class CfnDomainPropsMixin.RSessionAppSettingsProperty Implements CfnDomainPropsMixin.IRSessionAppSettingsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-rsessionappsettings.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 rSessionAppSettingsProperty = new RSessionAppSettingsProperty {
                 CustomImages = new [] { new CustomImageProperty {
                     AppImageConfigName = "appImageConfigName",
                     ImageName = "imageName",
                     ImageVersionNumber = 123
                 } },
                 DefaultResourceSpec = new ResourceSpecProperty {
                     InstanceType = "instanceType",
                     LifecycleConfigArn = "lifecycleConfigArn",
                     SageMakerImageArn = "sageMakerImageArn",
                     SageMakerImageVersionArn = "sageMakerImageVersionArn"
                 }
             };

Synopsis

Constructors

RSessionAppSettingsProperty()

A collection of settings that apply to an RSessionGateway app.

Properties

CustomImages

A list of custom SageMaker AI images that are configured to run as a RSession app.

DefaultResourceSpec

Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

Constructors

RSessionAppSettingsProperty()

A collection of settings that apply to an RSessionGateway app.

public RSessionAppSettingsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-rsessionappsettings.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 rSessionAppSettingsProperty = new RSessionAppSettingsProperty {
                 CustomImages = new [] { new CustomImageProperty {
                     AppImageConfigName = "appImageConfigName",
                     ImageName = "imageName",
                     ImageVersionNumber = 123
                 } },
                 DefaultResourceSpec = new ResourceSpecProperty {
                     InstanceType = "instanceType",
                     LifecycleConfigArn = "lifecycleConfigArn",
                     SageMakerImageArn = "sageMakerImageArn",
                     SageMakerImageVersionArn = "sageMakerImageVersionArn"
                 }
             };

Properties

CustomImages

A list of custom SageMaker AI images that are configured to run as a RSession app.

public object? CustomImages { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-rsessionappsettings.html#cfn-sagemaker-domain-rsessionappsettings-customimages

Type union: either IResolvable or (either IResolvable or CfnDomainPropsMixin.ICustomImageProperty)[]

DefaultResourceSpec

Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

public object? DefaultResourceSpec { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-rsessionappsettings.html#cfn-sagemaker-domain-rsessionappsettings-defaultresourcespec

Type union: either IResolvable or CfnDomainPropsMixin.IResourceSpecProperty

Implements

CfnDomainPropsMixin.IRSessionAppSettingsProperty
Back to top Generated by DocFX