Interface ClientData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClientData.Builder,ClientData>,SdkBuilder<ClientData.Builder,ClientData>,SdkPojo
- Enclosing class:
- ClientData
public static interface ClientData.Builder extends SdkPojo, CopyableBuilder<ClientData.Builder,ClientData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClientData.Buildercomment(String comment)A user-defined comment about the disk upload.ClientData.BuilderuploadEnd(Instant uploadEnd)The time that the disk upload ends.ClientData.BuilderuploadSize(Double uploadSize)The size of the uploaded disk image, in GiB.ClientData.BuilderuploadStart(Instant uploadStart)The time that the disk upload starts.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
comment
ClientData.Builder comment(String comment)
A user-defined comment about the disk upload.
- Parameters:
comment- A user-defined comment about the disk upload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uploadEnd
ClientData.Builder uploadEnd(Instant uploadEnd)
The time that the disk upload ends.
- Parameters:
uploadEnd- The time that the disk upload ends.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uploadSize
ClientData.Builder uploadSize(Double uploadSize)
The size of the uploaded disk image, in GiB.
- Parameters:
uploadSize- The size of the uploaded disk image, in GiB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uploadStart
ClientData.Builder uploadStart(Instant uploadStart)
The time that the disk upload starts.
- Parameters:
uploadStart- The time that the disk upload starts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-