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