Interface TimeInNanos.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimeInNanos.Builder,TimeInNanos>,SdkBuilder<TimeInNanos.Builder,TimeInNanos>,SdkPojo
- Enclosing class:
- TimeInNanos
public static interface TimeInNanos.Builder extends SdkPojo, CopyableBuilder<TimeInNanos.Builder,TimeInNanos>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeInNanos.BuilderoffsetInNanos(Integer offsetInNanos)The nanosecond offset fromtimeInSeconds.TimeInNanos.BuildertimeInSeconds(Long timeInSeconds)The timestamp date, in seconds, in the Unix epoch format.-
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
-
timeInSeconds
TimeInNanos.Builder timeInSeconds(Long timeInSeconds)
The timestamp date, in seconds, in the Unix epoch format. Fractional nanosecond data is provided by
offsetInNanos.- Parameters:
timeInSeconds- The timestamp date, in seconds, in the Unix epoch format. Fractional nanosecond data is provided byoffsetInNanos.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offsetInNanos
TimeInNanos.Builder offsetInNanos(Integer offsetInNanos)
The nanosecond offset from
timeInSeconds.- Parameters:
offsetInNanos- The nanosecond offset fromtimeInSeconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-