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