interface IdleSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnUserProfile.IdleSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnUserProfile_IdleSettingsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnUserProfile.IdleSettingsProperty |
Python | aws_cdk.aws_sagemaker.CfnUserProfile.IdleSettingsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnUserProfile » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const idleSettingsProperty: sagemaker.CfnUserProfile.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.