Interface CallbackStartedDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CallbackStartedDetails.Builder,CallbackStartedDetails>,SdkBuilder<CallbackStartedDetails.Builder,CallbackStartedDetails>,SdkPojo
- Enclosing class:
- CallbackStartedDetails
@Mutable @NotThreadSafe public static interface CallbackStartedDetails.Builder extends SdkPojo, CopyableBuilder<CallbackStartedDetails.Builder,CallbackStartedDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallbackStartedDetails.BuildercallbackId(String callbackId)The callback ID.CallbackStartedDetails.BuilderheartbeatTimeout(Integer heartbeatTimeout)The heartbeat timeout value, in seconds.CallbackStartedDetails.Buildertimeout(Integer timeout)The timeout value, in seconds.-
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
-
callbackId
CallbackStartedDetails.Builder callbackId(String callbackId)
The callback ID. Callback IDs are generated by the
DurableContextwhen a durable function callsctx.waitForCallback.- Parameters:
callbackId- The callback ID. Callback IDs are generated by theDurableContextwhen a durable function callsctx.waitForCallback.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
heartbeatTimeout
CallbackStartedDetails.Builder heartbeatTimeout(Integer heartbeatTimeout)
The heartbeat timeout value, in seconds.
- Parameters:
heartbeatTimeout- The heartbeat timeout value, in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeout
CallbackStartedDetails.Builder timeout(Integer timeout)
The timeout value, in seconds.
- Parameters:
timeout- The timeout value, in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-