Class: Aws::IoT::Types::ListTopicRulesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

The input for the ListTopicRules operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to return.

Returns:

  • (Integer)


11473
11474
11475
11476
11477
11478
11479
11480
# File 'lib/aws-sdk-iot/types.rb', line 11473

class ListTopicRulesRequest < Struct.new(
  :topic,
  :max_results,
  :next_token,
  :rule_disabled)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

To retrieve the next set of results, the ‘nextToken` value from a previous response; otherwise null to receive the first set of results.

Returns:

  • (String)


11473
11474
11475
11476
11477
11478
11479
11480
# File 'lib/aws-sdk-iot/types.rb', line 11473

class ListTopicRulesRequest < Struct.new(
  :topic,
  :max_results,
  :next_token,
  :rule_disabled)
  SENSITIVE = []
  include Aws::Structure
end

#rule_disabledBoolean

Specifies whether the rule is disabled.

Returns:

  • (Boolean)


11473
11474
11475
11476
11477
11478
11479
11480
# File 'lib/aws-sdk-iot/types.rb', line 11473

class ListTopicRulesRequest < Struct.new(
  :topic,
  :max_results,
  :next_token,
  :rule_disabled)
  SENSITIVE = []
  include Aws::Structure
end

#topicString

The topic.

Returns:

  • (String)


11473
11474
11475
11476
11477
11478
11479
11480
# File 'lib/aws-sdk-iot/types.rb', line 11473

class ListTopicRulesRequest < Struct.new(
  :topic,
  :max_results,
  :next_token,
  :rule_disabled)
  SENSITIVE = []
  include Aws::Structure
end