Interface CfnUserProfilePropsMixin.IdleSettingsProperty

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

@Stability(Stable) public static interface CfnUserProfilePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 IdleSettingsProperty idleSettingsProperty = IdleSettingsProperty.builder()
         .idleTimeoutInMinutes(123)
         .lifecycleManagement("lifecycleManagement")
         .maxIdleTimeoutInMinutes(123)
         .minIdleTimeoutInMinutes(123)
         .build();
 

See Also: