Interface CfnDomain.AppLifecycleManagementProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.AppLifecycleManagementProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.AppLifecycleManagementProperty
extends software.amazon.jsii.JsiiSerializable
Settings that are used to configure and manage the lifecycle of Amazon SageMaker 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.*;
AppLifecycleManagementProperty appLifecycleManagementProperty = AppLifecycleManagementProperty.builder()
.idleSettings(IdleSettingsProperty.builder()
.idleTimeoutInMinutes(123)
.lifecycleManagement("lifecycleManagement")
.maxIdleTimeoutInMinutes(123)
.minIdleTimeoutInMinutes(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.AppLifecycleManagementPropertystatic final classAn implementation forCfnDomain.AppLifecycleManagementProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdleSettings
Settings related to idle shutdown of Studio applications.Returns union: either
IResolvableorCfnDomain.IdleSettingsProperty- See Also:
-
builder
-