Interface DecisionTaskStartedEventAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DecisionTaskStartedEventAttributes.Builder,DecisionTaskStartedEventAttributes>
,SdkBuilder<DecisionTaskStartedEventAttributes.Builder,DecisionTaskStartedEventAttributes>
,SdkPojo
- Enclosing class:
- DecisionTaskStartedEventAttributes
public static interface DecisionTaskStartedEventAttributes.Builder extends SdkPojo, CopyableBuilder<DecisionTaskStartedEventAttributes.Builder,DecisionTaskStartedEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecisionTaskStartedEventAttributes.Builder
identity(String identity)
Identity of the decider making the request.DecisionTaskStartedEventAttributes.Builder
scheduledEventId(Long scheduledEventId)
The ID of theDecisionTaskScheduled
event that was recorded when this decision task was scheduled.-
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
-
identity
DecisionTaskStartedEventAttributes.Builder identity(String identity)
Identity of the decider making the request. This enables diagnostic tracing when problems arise. The form of this identity is user defined.
- Parameters:
identity
- Identity of the decider making the request. This enables diagnostic tracing when problems arise. The form of this identity is user defined.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledEventId
DecisionTaskStartedEventAttributes.Builder scheduledEventId(Long scheduledEventId)
The ID of the
DecisionTaskScheduled
event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
scheduledEventId
- The ID of theDecisionTaskScheduled
event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-