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