You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::LexModelBuildingService::Types::GetBotAliasesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing GetBotAliasesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  bot_name: "BotName", # required
  next_token: "NextToken",
  max_results: 1,
  name_contains: "AliasName",
}

Instance Attribute Summary collapse

Instance Attribute Details

#bot_nameString

The name of the bot.

Returns:

  • (String)

    The name of the bot.

#max_resultsInteger

The maximum number of aliases to return in the response. The default is 50. .

Returns:

  • (Integer)

    The maximum number of aliases to return in the response.

#name_containsString

Substring to match in bot alias names. An alias will be returned if any part of its name matches the substring. For example, \"xyz\" matches both \"xyzabc\" and \"abcxyz.\"

Returns:

  • (String)

    Substring to match in bot alias names.

#next_tokenString

A pagination token for fetching the next page of aliases. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of aliases, specify the pagination token in the next request.

Returns:

  • (String)

    A pagination token for fetching the next page of aliases.