interface IdleSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnUserProfilePropsMixin.IdleSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnUserProfilePropsMixin_IdleSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnUserProfilePropsMixin.IdleSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnUserProfilePropsMixin.IdleSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnUserProfilePropsMixin » IdleSettingsProperty |
Settings related to idle shutdown of 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 idleSettingsProperty: sagemaker_mixins.CfnUserProfilePropsMixin.IdleSettingsProperty = {
idleTimeoutInMinutes: 123,
lifecycleManagement: 'lifecycleManagement',
maxIdleTimeoutInMinutes: 123,
minIdleTimeoutInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| idle | number | The time that SageMaker waits after the application becomes idle before shutting it down. |
| lifecycle | string | Indicates whether idle shutdown is activated for the application type. |
| max | number | The maximum value in minutes that custom idle shutdown can be set to by the user. |
| min | number | The minimum value in minutes that custom idle shutdown can be set to by the user. |
idleTimeoutInMinutes?
Type:
number
(optional)
The time that SageMaker waits after the application becomes idle before shutting it down.
lifecycleManagement?
Type:
string
(optional)
Indicates whether idle shutdown is activated for the application type.
maxIdleTimeoutInMinutes?
Type:
number
(optional)
The maximum value in minutes that custom idle shutdown can be set to by the user.
minIdleTimeoutInMinutes?
Type:
number
(optional)
The minimum value in minutes that custom idle shutdown can be set to by the user.

.NET
Go
Java
Python
TypeScript