interface RSessionAppSettingsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnDomain.RSessionAppSettingsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDomain_RSessionAppSettingsProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnDomain.RSessionAppSettingsProperty |
![]() | aws_cdk.aws_sagemaker.CfnDomain.RSessionAppSettingsProperty |
![]() | aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
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 AI 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 AI 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.