Interface CfnApplication.AutoStopConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.AutoStopConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.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.services.emrserverless.*;
AutoStopConfigurationProperty autoStopConfigurationProperty = AutoStopConfigurationProperty.builder()
.enabled(false)
.idleTimeoutMinutes(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.AutoStopConfigurationPropertystatic final classAn implementation forCfnApplication.AutoStopConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Enables the application to automatically stop after a certain amount of time being idle.Defaults to true.
Returns union: either
BooleanorIResolvableDefault: - true
- See Also:
-
getIdleTimeoutMinutes
The amount of idle time in minutes after which your application will automatically stop.Defaults to 15 minutes.
- See Also:
-
builder
-