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: