Interface AutoStopConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoStopConfig.Builder,AutoStopConfig>,SdkBuilder<AutoStopConfig.Builder,AutoStopConfig>,SdkPojo
- Enclosing class:
- AutoStopConfig
public static interface AutoStopConfig.Builder extends SdkPojo, CopyableBuilder<AutoStopConfig.Builder,AutoStopConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoStopConfig.Builderenabled(Boolean enabled)Enables the application to automatically stop after a certain amount of time being idle.AutoStopConfig.BuilderidleTimeoutMinutes(Integer idleTimeoutMinutes)The amount of idle time in minutes after which your application will automatically stop.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
enabled
AutoStopConfig.Builder enabled(Boolean enabled)
Enables the application to automatically stop after a certain amount of time being idle. Defaults to true.
- Parameters:
enabled- Enables the application to automatically stop after a certain amount of time being idle. Defaults to true.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
idleTimeoutMinutes
AutoStopConfig.Builder idleTimeoutMinutes(Integer idleTimeoutMinutes)
The amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.
- Parameters:
idleTimeoutMinutes- The amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-