aws-cdk-lib.aws_sagemaker.CfnDomain.RSessionAppSettingsProperty

interface RSessionAppSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnDomain.RSessionAppSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDomain_RSessionAppSettingsProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnDomain.RSessionAppSettingsProperty
Pythonaws_cdk.aws_sagemaker.CfnDomain.RSessionAppSettingsProperty
TypeScript 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

NameTypeDescription
customImages?IResolvable | IResolvable | CustomImageProperty[]A list of custom SageMaker images that are configured to run as a RSession app.
defaultResourceSpec?IResolvable | ResourceSpecPropertySpecifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

customImages?

Type: IResolvable | IResolvable | CustomImageProperty[] (optional)

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


defaultResourceSpec?

Type: IResolvable | ResourceSpecProperty (optional)

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