Interface UnlockDelay.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UnlockDelay.Builder,UnlockDelay>,SdkBuilder<UnlockDelay.Builder,UnlockDelay>,SdkPojo
- Enclosing class:
- UnlockDelay
public static interface UnlockDelay.Builder extends SdkPojo, CopyableBuilder<UnlockDelay.Builder,UnlockDelay>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnlockDelay.BuilderunlockDelayUnit(String unlockDelayUnit)The unit of time in which to measure the unlock delay.UnlockDelay.BuilderunlockDelayUnit(UnlockDelayUnit unlockDelayUnit)The unit of time in which to measure the unlock delay.UnlockDelay.BuilderunlockDelayValue(Integer unlockDelayValue)The unlock delay period, measured in the unit specified for UnlockDelayUnit.-
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
-
unlockDelayValue
UnlockDelay.Builder unlockDelayValue(Integer unlockDelayValue)
The unlock delay period, measured in the unit specified for UnlockDelayUnit.
- Parameters:
unlockDelayValue- The unlock delay period, measured in the unit specified for UnlockDelayUnit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unlockDelayUnit
UnlockDelay.Builder unlockDelayUnit(String unlockDelayUnit)
The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.
- Parameters:
unlockDelayUnit- The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UnlockDelayUnit,UnlockDelayUnit
-
unlockDelayUnit
UnlockDelay.Builder unlockDelayUnit(UnlockDelayUnit unlockDelayUnit)
The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.
- Parameters:
unlockDelayUnit- The unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UnlockDelayUnit,UnlockDelayUnit
-
-