Class: Aws::IoT::Types::DeleteTopicRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteTopicRuleRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass DeleteTopicRuleRequest data as a hash:
{
rule_name: "RuleName", # required
}
The input for the DeleteTopicRule operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_name ⇒ String
The name of the rule.
Instance Attribute Details
#rule_name ⇒ String
The name of the rule.
6383 6384 6385 6386 6387 |
# File 'lib/aws-sdk-iot/types.rb', line 6383 class DeleteTopicRuleRequest < Struct.new( :rule_name) SENSITIVE = [] include Aws::Structure end |