Interface CfnSpace.SpaceAppLifecycleManagementProperty

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

@Stability(Stable) public static interface CfnSpace.SpaceAppLifecycleManagementProperty extends software.amazon.jsii.JsiiSerializable
Settings that are used to configure and manage the lifecycle of Amazon SageMaker Studio applications in a space.

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.*;
 SpaceAppLifecycleManagementProperty spaceAppLifecycleManagementProperty = SpaceAppLifecycleManagementProperty.builder()
         .idleSettings(SpaceIdleSettingsProperty.builder()
                 .idleTimeoutInMinutes(123)
                 .build())
         .build();
 

See Also: