Class: Aws::IoT::Types::DisableTopicRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DisableTopicRuleRequest
- Includes:
- Structure
- Defined in:
- 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.
8513 8514 8515 8516 8517 |
# File 'lib/aws-sdk-iot/types.rb', line 8513 class DisableTopicRuleRequest < Struct.new( :rule_name) SENSITIVE = [] include Aws::Structure end |