Interface IntentClassificationTestResults.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IntentClassificationTestResults.Builder,IntentClassificationTestResults>,SdkBuilder<IntentClassificationTestResults.Builder,IntentClassificationTestResults>,SdkPojo
- Enclosing class:
- IntentClassificationTestResults
public static interface IntentClassificationTestResults.Builder extends SdkPojo, CopyableBuilder<IntentClassificationTestResults.Builder,IntentClassificationTestResults>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntentClassificationTestResults.Builderitems(Collection<IntentClassificationTestResultItem> items)A list of the results for the intent classification test.IntentClassificationTestResults.Builderitems(Consumer<IntentClassificationTestResultItem.Builder>... items)A list of the results for the intent classification test.IntentClassificationTestResults.Builderitems(IntentClassificationTestResultItem... items)A list of the results for the intent classification test.-
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
IntentClassificationTestResults.Builder items(Collection<IntentClassificationTestResultItem> items)
A list of the results for the intent classification test.
- Parameters:
items- A list of the results for the intent classification test.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
IntentClassificationTestResults.Builder items(IntentClassificationTestResultItem... items)
A list of the results for the intent classification test.
- Parameters:
items- A list of the results for the intent classification test.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
IntentClassificationTestResults.Builder items(Consumer<IntentClassificationTestResultItem.Builder>... items)
A list of the results for the intent classification test.
This is a convenience method that creates an instance of theIntentClassificationTestResultItem.Builderavoiding the need to create one manually viaIntentClassificationTestResultItem.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 onIntentClassificationTestResultItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-