Interface CfnUserProfile.AppLifecycleManagementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserProfile.AppLifecycleManagementProperty.Jsii$Proxy
Enclosing class:
CfnUserProfile

@Stability(Stable) public static interface CfnUserProfile.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: