Interface UtteranceLevelTestResults.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UtteranceLevelTestResults.Builder,UtteranceLevelTestResults>,SdkBuilder<UtteranceLevelTestResults.Builder,UtteranceLevelTestResults>,SdkPojo
- Enclosing class:
- UtteranceLevelTestResults
public static interface UtteranceLevelTestResults.Builder extends SdkPojo, CopyableBuilder<UtteranceLevelTestResults.Builder,UtteranceLevelTestResults>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UtteranceLevelTestResults.Builderitems(Collection<UtteranceLevelTestResultItem> items)Contains information about an utterance in the results of the test set execution.UtteranceLevelTestResults.Builderitems(Consumer<UtteranceLevelTestResultItem.Builder>... items)Contains information about an utterance in the results of the test set execution.UtteranceLevelTestResults.Builderitems(UtteranceLevelTestResultItem... items)Contains information about an utterance in the results of the test set execution.-
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
UtteranceLevelTestResults.Builder items(Collection<UtteranceLevelTestResultItem> items)
Contains information about an utterance in the results of the test set execution.
- Parameters:
items- Contains information about an utterance in the results of the test set execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
UtteranceLevelTestResults.Builder items(UtteranceLevelTestResultItem... items)
Contains information about an utterance in the results of the test set execution.
- Parameters:
items- Contains information about an utterance in the results of the test set execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
UtteranceLevelTestResults.Builder items(Consumer<UtteranceLevelTestResultItem.Builder>... items)
Contains information about an utterance in the results of the test set execution.
This is a convenience method that creates an instance of theUtteranceLevelTestResultItem.Builderavoiding the need to create one manually viaUtteranceLevelTestResultItem.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 onUtteranceLevelTestResultItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-