Class: Aws::IoTEvents::Types::DeleteDetectorModelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::DeleteDetectorModelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass DeleteDetectorModelRequest data as a hash:
{
detector_model_name: "DetectorModelName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#detector_model_name ⇒ String
The name of the detector model to be deleted.
Instance Attribute Details
#detector_model_name ⇒ String
The name of the detector model to be deleted.
1159 1160 1161 1162 1163 |
# File 'lib/aws-sdk-iotevents/types.rb', line 1159 class DeleteDetectorModelRequest < Struct.new( :detector_model_name) SENSITIVE = [] include Aws::Structure end |