Class: Aws::LexModelBuildingService::Types::DeleteBotAliasRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lexmodelbuildingservice/types.rb

Overview

Note:

When making an API call, you may pass DeleteBotAliasRequest data as a hash:

{
  name: "AliasName", # required
  bot_name: "BotName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#bot_nameString

The name of the bot that the alias points to.

Returns:

  • (String)


599
600
601
602
603
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 599

class DeleteBotAliasRequest < Struct.new(
  :name,
  :bot_name)
  include Aws::Structure
end

#nameString

The name of the alias to delete. The name is case sensitive.

Returns:

  • (String)


599
600
601
602
603
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 599

class DeleteBotAliasRequest < Struct.new(
  :name,
  :bot_name)
  include Aws::Structure
end