interface JupyterServerAppSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDomain.JupyterServerAppSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDomain_JupyterServerAppSettingsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnDomain.JupyterServerAppSettingsProperty |
Python | aws_cdk.aws_sagemaker.CfnDomain.JupyterServerAppSettingsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnDomain » JupyterServerAppSettingsProperty |
The JupyterServer app settings.
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 jupyterServerAppSettingsProperty: sagemaker.CfnDomain.JupyterServerAppSettingsProperty = {
defaultResourceSpec: {
instanceType: 'instanceType',
lifecycleConfigArn: 'lifecycleConfigArn',
sageMakerImageArn: 'sageMakerImageArn',
sageMakerImageVersionArn: 'sageMakerImageVersionArn',
},
lifecycleConfigArns: ['lifecycleConfigArns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | IResolvable | Resource | The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterServer app. |
| lifecycle | string[] | The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the JupyterServerApp. |
defaultResourceSpec?
Type:
IResolvable | Resource
(optional)
The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterServer app.
lifecycleConfigArns?
Type:
string[]
(optional)
The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the JupyterServerApp.
If you use this parameter, the DefaultResourceSpec parameter is also required.
To remove a Lifecycle Config, you must set
LifecycleConfigArnsto an empty list.

.NET
Go
Java
Python
TypeScript