Interface TransferData.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TransferData.Builder,TransferData>
,SdkBuilder<TransferData.Builder,TransferData>
,SdkPojo
- Enclosing class:
- TransferData
public static interface TransferData.Builder extends SdkPojo, CopyableBuilder<TransferData.Builder,TransferData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransferData.Builder
acceptDate(Instant acceptDate)
The date the transfer was accepted.TransferData.Builder
rejectDate(Instant rejectDate)
The date the transfer was rejected.TransferData.Builder
rejectReason(String rejectReason)
The reason why the transfer was rejected.TransferData.Builder
transferDate(Instant transferDate)
The date the transfer took place.TransferData.Builder
transferMessage(String transferMessage)
The transfer message.-
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
-
transferMessage
TransferData.Builder transferMessage(String transferMessage)
The transfer message.
- Parameters:
transferMessage
- The transfer message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rejectReason
TransferData.Builder rejectReason(String rejectReason)
The reason why the transfer was rejected.
- Parameters:
rejectReason
- The reason why the transfer was rejected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transferDate
TransferData.Builder transferDate(Instant transferDate)
The date the transfer took place.
- Parameters:
transferDate
- The date the transfer took place.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
acceptDate
TransferData.Builder acceptDate(Instant acceptDate)
The date the transfer was accepted.
- Parameters:
acceptDate
- The date the transfer was accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rejectDate
TransferData.Builder rejectDate(Instant rejectDate)
The date the transfer was rejected.
- Parameters:
rejectDate
- The date the transfer was rejected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-