Interface TestSetDiscrepancyErrors.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestSetDiscrepancyErrors.Builder,TestSetDiscrepancyErrors>,SdkBuilder<TestSetDiscrepancyErrors.Builder,TestSetDiscrepancyErrors>,SdkPojo
- Enclosing class:
- TestSetDiscrepancyErrors
public static interface TestSetDiscrepancyErrors.Builder extends SdkPojo, CopyableBuilder<TestSetDiscrepancyErrors.Builder,TestSetDiscrepancyErrors>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestSetDiscrepancyErrors.BuilderintentDiscrepancies(Collection<TestSetIntentDiscrepancyItem> intentDiscrepancies)Contains information about discrepancies found for intents between the test set and the bot.TestSetDiscrepancyErrors.BuilderintentDiscrepancies(Consumer<TestSetIntentDiscrepancyItem.Builder>... intentDiscrepancies)Contains information about discrepancies found for intents between the test set and the bot.TestSetDiscrepancyErrors.BuilderintentDiscrepancies(TestSetIntentDiscrepancyItem... intentDiscrepancies)Contains information about discrepancies found for intents between the test set and the bot.TestSetDiscrepancyErrors.BuilderslotDiscrepancies(Collection<TestSetSlotDiscrepancyItem> slotDiscrepancies)Contains information about discrepancies found for slots between the test set and the bot.TestSetDiscrepancyErrors.BuilderslotDiscrepancies(Consumer<TestSetSlotDiscrepancyItem.Builder>... slotDiscrepancies)Contains information about discrepancies found for slots between the test set and the bot.TestSetDiscrepancyErrors.BuilderslotDiscrepancies(TestSetSlotDiscrepancyItem... slotDiscrepancies)Contains information about discrepancies found for slots between the test set and the bot.-
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
-
intentDiscrepancies
TestSetDiscrepancyErrors.Builder intentDiscrepancies(Collection<TestSetIntentDiscrepancyItem> intentDiscrepancies)
Contains information about discrepancies found for intents between the test set and the bot.
- Parameters:
intentDiscrepancies- Contains information about discrepancies found for intents between the test set and the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intentDiscrepancies
TestSetDiscrepancyErrors.Builder intentDiscrepancies(TestSetIntentDiscrepancyItem... intentDiscrepancies)
Contains information about discrepancies found for intents between the test set and the bot.
- Parameters:
intentDiscrepancies- Contains information about discrepancies found for intents between the test set and the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intentDiscrepancies
TestSetDiscrepancyErrors.Builder intentDiscrepancies(Consumer<TestSetIntentDiscrepancyItem.Builder>... intentDiscrepancies)
Contains information about discrepancies found for intents between the test set and the bot.
This is a convenience method that creates an instance of theTestSetIntentDiscrepancyItem.Builderavoiding the need to create one manually viaTestSetIntentDiscrepancyItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#intentDiscrepancies(List.) - Parameters:
intentDiscrepancies- a consumer that will call methods onTestSetIntentDiscrepancyItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#intentDiscrepancies(java.util.Collection)
-
slotDiscrepancies
TestSetDiscrepancyErrors.Builder slotDiscrepancies(Collection<TestSetSlotDiscrepancyItem> slotDiscrepancies)
Contains information about discrepancies found for slots between the test set and the bot.
- Parameters:
slotDiscrepancies- Contains information about discrepancies found for slots between the test set and the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slotDiscrepancies
TestSetDiscrepancyErrors.Builder slotDiscrepancies(TestSetSlotDiscrepancyItem... slotDiscrepancies)
Contains information about discrepancies found for slots between the test set and the bot.
- Parameters:
slotDiscrepancies- Contains information about discrepancies found for slots between the test set and the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slotDiscrepancies
TestSetDiscrepancyErrors.Builder slotDiscrepancies(Consumer<TestSetSlotDiscrepancyItem.Builder>... slotDiscrepancies)
Contains information about discrepancies found for slots between the test set and the bot.
This is a convenience method that creates an instance of theTestSetSlotDiscrepancyItem.Builderavoiding the need to create one manually viaTestSetSlotDiscrepancyItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#slotDiscrepancies(List.) - Parameters:
slotDiscrepancies- a consumer that will call methods onTestSetSlotDiscrepancyItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#slotDiscrepancies(java.util.Collection)
-
-