interface RSessionAppSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDomainPropsMixin.RSessionAppSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDomainPropsMixin_RSessionAppSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDomainPropsMixin.RSessionAppSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDomainPropsMixin.RSessionAppSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDomainPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const rSessionAppSettingsProperty: sagemaker_mixins.CfnDomainPropsMixin.RSessionAppSettingsProperty = {
customImages: [{
appImageConfigName: 'appImageConfigName',
imageName: 'imageName',
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.

.NET
Go
Java
Python
TypeScript