public static interface GetUtterancesViewResponse.Builder extends LexModelBuildingResponse.Builder, SdkPojo, CopyableBuilder<GetUtterancesViewResponse.Builder,GetUtterancesViewResponse>
Modifier and Type | Method and Description |
---|---|
GetUtterancesViewResponse.Builder |
botName(String botName)
The name of the bot for which utterance information was returned.
|
GetUtterancesViewResponse.Builder |
utterances(Collection<UtteranceList> utterances)
An array of UtteranceList objects, each containing a list of UtteranceData objects describing
the utterances that were processed by your bot.
|
GetUtterancesViewResponse.Builder |
utterances(Consumer<UtteranceList.Builder>... utterances)
An array of UtteranceList objects, each containing a list of UtteranceData objects describing
the utterances that were processed by your bot.
|
GetUtterancesViewResponse.Builder |
utterances(UtteranceList... utterances)
An array of UtteranceList objects, each containing a list of UtteranceData objects describing
the utterances that were processed by your bot.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
equalsBySdkFields, sdkFields
copy
applyMutation, build
GetUtterancesViewResponse.Builder botName(String botName)
The name of the bot for which utterance information was returned.
botName
- The name of the bot for which utterance information was returned.GetUtterancesViewResponse.Builder utterances(Collection<UtteranceList> utterances)
An array of UtteranceList objects, each containing a list of UtteranceData objects describing
the utterances that were processed by your bot. The response contains a maximum of 100
UtteranceData
objects for each version. Amazon Lex returns the most frequent utterances received
by the bot in the last 15 days.
utterances
- An array of UtteranceList objects, each containing a list of UtteranceData objects
describing the utterances that were processed by your bot. The response contains a maximum of 100
UtteranceData
objects for each version. Amazon Lex returns the most frequent utterances
received by the bot in the last 15 days.GetUtterancesViewResponse.Builder utterances(UtteranceList... utterances)
An array of UtteranceList objects, each containing a list of UtteranceData objects describing
the utterances that were processed by your bot. The response contains a maximum of 100
UtteranceData
objects for each version. Amazon Lex returns the most frequent utterances received
by the bot in the last 15 days.
utterances
- An array of UtteranceList objects, each containing a list of UtteranceData objects
describing the utterances that were processed by your bot. The response contains a maximum of 100
UtteranceData
objects for each version. Amazon Lex returns the most frequent utterances
received by the bot in the last 15 days.GetUtterancesViewResponse.Builder utterances(Consumer<UtteranceList.Builder>... utterances)
An array of UtteranceList objects, each containing a list of UtteranceData objects describing
the utterances that were processed by your bot. The response contains a maximum of 100
UtteranceData
objects for each version. Amazon Lex returns the most frequent utterances received
by the bot in the last 15 days.
List.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #utterances(List)
.utterances
- a consumer that will call methods on List.Builder
#utterances(List)