interface AppLifecycleManagementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnUserProfilePropsMixin.AppLifecycleManagementProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnUserProfilePropsMixin_AppLifecycleManagementProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnUserProfilePropsMixin.AppLifecycleManagementProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnUserProfilePropsMixin.AppLifecycleManagementProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnUserProfilePropsMixin » AppLifecycleManagementProperty |
Settings that are used to configure and manage the lifecycle of Amazon SageMaker Studio applications.
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 appLifecycleManagementProperty: sagemaker_mixins.CfnUserProfilePropsMixin.AppLifecycleManagementProperty = {
idleSettings: {
idleTimeoutInMinutes: 123,
lifecycleManagement: 'lifecycleManagement',
maxIdleTimeoutInMinutes: 123,
minIdleTimeoutInMinutes: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| idle | IResolvable | Idle | Settings related to idle shutdown of Studio applications. |
idleSettings?
Type:
IResolvable | Idle
(optional)
Settings related to idle shutdown of Studio applications.

.NET
Go
Java
Python
TypeScript