getBots
Returns bot information as follows:
If you provide the
nameContainsfield, the response includes information for the$LATESTversion of all bots whose name contains the specified string.If you don't specify the
nameContainsfield, the operation returns information about the$LATESTversion of all of your bots.
This operation requires permission for the lex:GetBots action.
Samples
fun main() {
//sampleStart
// This example shows how to get a list of all of the bots in your account.
val resp = lexModelBuildingClient.getBots {
nextToken = ""
maxResults = 5
}
//sampleEnd
}