Interface TimestreamTimestamp.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TimestreamTimestamp.Builder,TimestreamTimestamp>
,SdkBuilder<TimestreamTimestamp.Builder,TimestreamTimestamp>
,SdkPojo
- Enclosing class:
- TimestreamTimestamp
public static interface TimestreamTimestamp.Builder extends SdkPojo, CopyableBuilder<TimestreamTimestamp.Builder,TimestreamTimestamp>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimestreamTimestamp.Builder
unit(String unit)
The precision of the timestamp value that results from the expression described invalue
.TimestreamTimestamp.Builder
value(String value)
An expression that returns a long epoch time value.-
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
-
value
TimestreamTimestamp.Builder value(String value)
An expression that returns a long epoch time value.
- Parameters:
value
- An expression that returns a long epoch time value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unit
TimestreamTimestamp.Builder unit(String unit)
The precision of the timestamp value that results from the expression described in
value
.Valid values:
SECONDS
|MILLISECONDS
|MICROSECONDS
|NANOSECONDS
. The default isMILLISECONDS
.- Parameters:
unit
- The precision of the timestamp value that results from the expression described invalue
.Valid values:
SECONDS
|MILLISECONDS
|MICROSECONDS
|NANOSECONDS
. The default isMILLISECONDS
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-