Class CfnDomainPropsMixin.RSessionAppSettingsProperty
A collection of settings that apply to an RSessionGateway app.
Implements
Inherited Members
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
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 |
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
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
Remarks
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; }