Interface IdleSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IdleSettings.Builder,IdleSettings>,SdkBuilder<IdleSettings.Builder,IdleSettings>,SdkPojo
- Enclosing class:
- IdleSettings
public static interface IdleSettings.Builder extends SdkPojo, CopyableBuilder<IdleSettings.Builder,IdleSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IdleSettings.BuilderidleTimeoutInMinutes(Integer idleTimeoutInMinutes)The time that SageMaker waits after the application becomes idle before shutting it down.IdleSettings.BuilderlifecycleManagement(String lifecycleManagement)Indicates whether idle shutdown is activated for the application type.IdleSettings.BuilderlifecycleManagement(LifecycleManagement lifecycleManagement)Indicates whether idle shutdown is activated for the application type.IdleSettings.BuildermaxIdleTimeoutInMinutes(Integer maxIdleTimeoutInMinutes)The maximum value in minutes that custom idle shutdown can be set to by the user.IdleSettings.BuilderminIdleTimeoutInMinutes(Integer minIdleTimeoutInMinutes)The minimum value in minutes that custom idle shutdown can be set to by the user.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
lifecycleManagement
IdleSettings.Builder lifecycleManagement(String lifecycleManagement)
Indicates whether idle shutdown is activated for the application type.
- Parameters:
lifecycleManagement- Indicates whether idle shutdown is activated for the application type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LifecycleManagement,LifecycleManagement
-
lifecycleManagement
IdleSettings.Builder lifecycleManagement(LifecycleManagement lifecycleManagement)
Indicates whether idle shutdown is activated for the application type.
- Parameters:
lifecycleManagement- Indicates whether idle shutdown is activated for the application type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LifecycleManagement,LifecycleManagement
-
idleTimeoutInMinutes
IdleSettings.Builder idleTimeoutInMinutes(Integer idleTimeoutInMinutes)
The time that SageMaker waits after the application becomes idle before shutting it down.
- Parameters:
idleTimeoutInMinutes- The time that SageMaker waits after the application becomes idle before shutting it down.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minIdleTimeoutInMinutes
IdleSettings.Builder minIdleTimeoutInMinutes(Integer minIdleTimeoutInMinutes)
The minimum value in minutes that custom idle shutdown can be set to by the user.
- Parameters:
minIdleTimeoutInMinutes- The minimum value in minutes that custom idle shutdown can be set to by the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxIdleTimeoutInMinutes
IdleSettings.Builder maxIdleTimeoutInMinutes(Integer maxIdleTimeoutInMinutes)
The maximum value in minutes that custom idle shutdown can be set to by the user.
- Parameters:
maxIdleTimeoutInMinutes- The maximum value in minutes that custom idle shutdown can be set to by the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-