interface SpaceIdleSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnSpacePropsMixin.SpaceIdleSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnSpacePropsMixin_SpaceIdleSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnSpacePropsMixin.SpaceIdleSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnSpacePropsMixin.SpaceIdleSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnSpacePropsMixin » SpaceIdleSettingsProperty |
Settings related to idle shutdown of Studio applications in a space.
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 spaceIdleSettingsProperty: sagemaker_mixins.CfnSpacePropsMixin.SpaceIdleSettingsProperty = {
idleTimeoutInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| idle | number | The time that SageMaker waits after the application becomes idle before shutting it down. |
idleTimeoutInMinutes?
Type:
number
(optional)
The time that SageMaker waits after the application becomes idle before shutting it down.

.NET
Go
Java
Python
TypeScript