interface RSessionAppSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDomain.RSessionAppSettingsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnDomain.RSessionAppSettingsProperty |
Python | aws_cdk.aws_sagemaker.CfnDomain.RSessionAppSettingsProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnDomain » RSessionAppSettingsProperty |
A collection of settings that apply to an RSessionGateway app.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const rSessionAppSettingsProperty: sagemaker.CfnDomain.RSessionAppSettingsProperty = {
customImages: [{
appImageConfigName: 'appImageConfigName',
imageName: 'imageName',
// the properties below are optional
imageVersionNumber: 123,
}],
defaultResourceSpec: {
instanceType: 'instanceType',
lifecycleConfigArn: 'lifecycleConfigArn',
sageMakerImageArn: 'sageMakerImageArn',
sageMakerImageVersionArn: 'sageMakerImageVersionArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | IResolvable | Custom[] | A list of custom SageMaker images that are configured to run as a RSession app. |
| default | IResolvable | Resource | Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on. |
customImages?
Type:
IResolvable | IResolvable | Custom[]
(optional)
A list of custom SageMaker images that are configured to run as a RSession app.
defaultResourceSpec?
Type:
IResolvable | Resource
(optional)
Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

.NET
Java
Python
TypeScript