Interface AssetPropertyTimestamp.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AssetPropertyTimestamp.Builder,AssetPropertyTimestamp>,SdkBuilder<AssetPropertyTimestamp.Builder,AssetPropertyTimestamp>,SdkPojo
- Enclosing class:
- AssetPropertyTimestamp
public static interface AssetPropertyTimestamp.Builder extends SdkPojo, CopyableBuilder<AssetPropertyTimestamp.Builder,AssetPropertyTimestamp>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssetPropertyTimestamp.BuilderoffsetInNanos(String offsetInNanos)The nanosecond offset converted fromtimeInSeconds.AssetPropertyTimestamp.BuildertimeInSeconds(String timeInSeconds)The timestamp, 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
AssetPropertyTimestamp.Builder timeInSeconds(String timeInSeconds)
The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
- Parameters:
timeInSeconds- The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offsetInNanos
AssetPropertyTimestamp.Builder offsetInNanos(String offsetInNanos)
The nanosecond offset converted from
timeInSeconds. The valid range is between 0-999999999.- Parameters:
offsetInNanos- The nanosecond offset converted fromtimeInSeconds. The valid range is between 0-999999999.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-