Class: Aws::LexModelBuildingService::Types::DeleteSlotTypeVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::DeleteSlotTypeVersionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass DeleteSlotTypeVersionRequest data as a hash:
{
name: "SlotTypeName", # required
version: "NumericalVersion", # required
}
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the slot type.
-
#version ⇒ String
The version of the slot type to delete.
Instance Attribute Details
#name ⇒ String
The name of the slot type.
762 763 764 765 766 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 762 class DeleteSlotTypeVersionRequest < Struct.new( :name, :version) include Aws::Structure end |
#version ⇒ String
The version of the slot type to delete. You cannot delete the ‘$LATEST` version of the slot type. To delete the `$LATEST` version, use the DeleteSlotType operation.
762 763 764 765 766 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 762 class DeleteSlotTypeVersionRequest < Struct.new( :name, :version) include Aws::Structure end |