Interface CfnApplicationPropsMixin.AutoStopConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationPropsMixin.AutoStopConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for an application to automatically stop after a certain amount of time being idle.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.emrserverless.mixins.*;
 AutoStopConfigurationProperty autoStopConfigurationProperty = AutoStopConfigurationProperty.builder()
         .enabled(false)
         .idleTimeoutMinutes(123)
         .build();
 

See Also: