Interface Timer.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Timer.Builder,Timer>,SdkBuilder<Timer.Builder,Timer>,SdkPojo
- Enclosing class:
- Timer
public static interface Timer.Builder extends SdkPojo, CopyableBuilder<Timer.Builder,Timer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Timer.Buildername(String name)The name of the timer.Timer.Buildertimestamp(Instant timestamp)The expiration time for the timer.-
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
-
name
Timer.Builder name(String name)
The name of the timer.
- Parameters:
name- The name of the timer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
Timer.Builder timestamp(Instant timestamp)
The expiration time for the timer.
- Parameters:
timestamp- The expiration time for the timer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-