Interface ConversationLevelTestResults.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConversationLevelTestResults.Builder,ConversationLevelTestResults>,SdkBuilder<ConversationLevelTestResults.Builder,ConversationLevelTestResults>,SdkPojo
- Enclosing class:
- ConversationLevelTestResults
public static interface ConversationLevelTestResults.Builder extends SdkPojo, CopyableBuilder<ConversationLevelTestResults.Builder,ConversationLevelTestResults>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationLevelTestResults.Builderitems(Collection<ConversationLevelTestResultItem> items)The item list in the test set results data at the conversation level.ConversationLevelTestResults.Builderitems(Consumer<ConversationLevelTestResultItem.Builder>... items)The item list in the test set results data at the conversation level.ConversationLevelTestResults.Builderitems(ConversationLevelTestResultItem... items)The item list in the test set results data at the conversation level.-
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
-
items
ConversationLevelTestResults.Builder items(Collection<ConversationLevelTestResultItem> items)
The item list in the test set results data at the conversation level.
- Parameters:
items- The item list in the test set results data at the conversation level.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ConversationLevelTestResults.Builder items(ConversationLevelTestResultItem... items)
The item list in the test set results data at the conversation level.
- Parameters:
items- The item list in the test set results data at the conversation level.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ConversationLevelTestResults.Builder items(Consumer<ConversationLevelTestResultItem.Builder>... items)
The item list in the test set results data at the conversation level.
This is a convenience method that creates an instance of theConversationLevelTestResultItem.Builderavoiding the need to create one manually viaConversationLevelTestResultItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onConversationLevelTestResultItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-