Class: Aws::LexModelsV2::Types::DeleteBotRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::DeleteBotRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bot_id ⇒ String
The identifier of the bot to delete.
-
#skip_resource_in_use_check ⇒ Boolean
By default, Amazon Lex checks if any other resource, such as an alias or bot network, is using the bot version before it is deleted and throws a ‘ResourceInUseException` exception if the bot is being used by another resource.
Instance Attribute Details
#bot_id ⇒ String
The identifier of the bot to delete.
5146 5147 5148 5149 5150 5151 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5146 class DeleteBotRequest < Struct.new( :bot_id, :skip_resource_in_use_check) SENSITIVE = [] include Aws::Structure end |
#skip_resource_in_use_check ⇒ Boolean
By default, Amazon Lex checks if any other resource, such as an alias or bot network, is using the bot version before it is deleted and throws a ‘ResourceInUseException` exception if the bot is being used by another resource. Set this parameter to `true` to skip this check and remove the bot even if it is being used by another resource.
5146 5147 5148 5149 5150 5151 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 5146 class DeleteBotRequest < Struct.new( :bot_id, :skip_resource_in_use_check) SENSITIVE = [] include Aws::Structure end |