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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDomain.IdleSettingsProperty
static final class
An implementation forCfnDomain.IdleSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
The time that SageMaker waits after the application becomes idle before shutting it down.default String
Indicates whether idle shutdown is activated for the application type.default Number
The maximum value in minutes that custom idle shutdown can be set to by the user.default Number
The 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
-