Interface CfnDomain.IdleSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.IdleSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.IdleSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
IdleSettingsProperty idleSettingsProperty = IdleSettingsProperty.builder()
.idleTimeoutInMinutes(123)
.lifecycleManagement("lifecycleManagement")
.maxIdleTimeoutInMinutes(123)
.minIdleTimeoutInMinutes(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.IdleSettingsPropertystatic final classAn implementation forCfnDomain.IdleSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe time that SageMaker waits after the application becomes idle before shutting it down.default StringIndicates whether idle shutdown is activated for the application type.default NumberThe maximum value in minutes that custom idle shutdown can be set to by the user.default NumberThe minimum value in minutes that custom idle shutdown can be set to by the user.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdleTimeoutInMinutes
The time that SageMaker waits after the application becomes idle before shutting it down.- See Also:
-
getLifecycleManagement
Indicates whether idle shutdown is activated for the application type.- See Also:
-
getMaxIdleTimeoutInMinutes
The maximum value in minutes that custom idle shutdown can be set to by the user.- See Also:
-
getMinIdleTimeoutInMinutes
The minimum value in minutes that custom idle shutdown can be set to by the user.- See Also:
-
builder
-