Interface FlowExecutionMessage.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowExecutionMessage.Builder,FlowExecutionMessage>,SdkBuilder<FlowExecutionMessage.Builder,FlowExecutionMessage>,SdkPojo
- Enclosing class:
- FlowExecutionMessage
public static interface FlowExecutionMessage.Builder extends SdkPojo, CopyableBuilder<FlowExecutionMessage.Builder,FlowExecutionMessage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowExecutionMessage.BuildereventType(String eventType)The type of flow event .FlowExecutionMessage.BuildereventType(FlowExecutionEventType eventType)The type of flow event .FlowExecutionMessage.BuildermessageId(String messageId)The unique identifier of the message.FlowExecutionMessage.Builderpayload(String payload)A string containing information about the flow event.FlowExecutionMessage.Buildertimestamp(Instant timestamp)The date and time when the message was last updated.-
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
-
messageId
FlowExecutionMessage.Builder messageId(String messageId)
The unique identifier of the message.
- Parameters:
messageId- The unique identifier of the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventType
FlowExecutionMessage.Builder eventType(String eventType)
The type of flow event .
- Parameters:
eventType- The type of flow event .- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionEventType,FlowExecutionEventType
-
eventType
FlowExecutionMessage.Builder eventType(FlowExecutionEventType eventType)
The type of flow event .
- Parameters:
eventType- The type of flow event .- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionEventType,FlowExecutionEventType
-
timestamp
FlowExecutionMessage.Builder timestamp(Instant timestamp)
The date and time when the message was last updated.
- Parameters:
timestamp- The date and time when the message was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
payload
FlowExecutionMessage.Builder payload(String payload)
A string containing information about the flow event.
- Parameters:
payload- A string containing information about the flow event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-