Interface ListFlowExecutionMessagesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListFlowExecutionMessagesResponse.Builder,ListFlowExecutionMessagesResponse>,IoTThingsGraphResponse.Builder,SdkBuilder<ListFlowExecutionMessagesResponse.Builder,ListFlowExecutionMessagesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFlowExecutionMessagesResponse
public static interface ListFlowExecutionMessagesResponse.Builder extends IoTThingsGraphResponse.Builder, SdkPojo, CopyableBuilder<ListFlowExecutionMessagesResponse.Builder,ListFlowExecutionMessagesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFlowExecutionMessagesResponse.Buildermessages(Collection<FlowExecutionMessage> messages)A list of objects that contain information about events in the specified flow execution.ListFlowExecutionMessagesResponse.Buildermessages(Consumer<FlowExecutionMessage.Builder>... messages)A list of objects that contain information about events in the specified flow execution.ListFlowExecutionMessagesResponse.Buildermessages(FlowExecutionMessage... messages)A list of objects that contain information about events in the specified flow execution.ListFlowExecutionMessagesResponse.BuildernextToken(String nextToken)The string to specify asnextTokenwhen you request the next page of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotthingsgraph.model.IoTThingsGraphResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
messages
ListFlowExecutionMessagesResponse.Builder messages(Collection<FlowExecutionMessage> messages)
A list of objects that contain information about events in the specified flow execution.
- Parameters:
messages- A list of objects that contain information about events in the specified flow execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
messages
ListFlowExecutionMessagesResponse.Builder messages(FlowExecutionMessage... messages)
A list of objects that contain information about events in the specified flow execution.
- Parameters:
messages- A list of objects that contain information about events in the specified flow execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
messages
ListFlowExecutionMessagesResponse.Builder messages(Consumer<FlowExecutionMessage.Builder>... messages)
A list of objects that contain information about events in the specified flow execution.
This is a convenience method that creates an instance of theFlowExecutionMessage.Builderavoiding the need to create one manually viaFlowExecutionMessage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#messages(List.) - Parameters:
messages- a consumer that will call methods onFlowExecutionMessage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#messages(java.util.Collection)
-
nextToken
ListFlowExecutionMessagesResponse.Builder nextToken(String nextToken)
The string to specify as
nextTokenwhen you request the next page of results.- Parameters:
nextToken- The string to specify asnextTokenwhen you request the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-