Class: Aws::IoT::Types::AddThingsToThingGroupParams
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AddThingsToThingGroupParams
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Parameters used when defining a mitigation action that move a set of things to a thing group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#override_dynamic_groups ⇒ Boolean
Specifies if this mitigation action can move the things that triggered the mitigation action even if they are part of one or more dynamic thing groups.
-
#thing_group_names ⇒ Array<String>
The list of groups to which you want to add the things that triggered the mitigation action.
Instance Attribute Details
#override_dynamic_groups ⇒ Boolean
Specifies if this mitigation action can move the things that triggered the mitigation action even if they are part of one or more dynamic thing groups.
361 362 363 364 365 366 |
# File 'lib/aws-sdk-iot/types.rb', line 361 class AddThingsToThingGroupParams < Struct.new( :thing_group_names, :override_dynamic_groups) SENSITIVE = [] include Aws::Structure end |
#thing_group_names ⇒ Array<String>
The list of groups to which you want to add the things that triggered the mitigation action. You can add a thing to a maximum of 10 groups, but you can’t add a thing to more than one group in the same hierarchy.
361 362 363 364 365 366 |
# File 'lib/aws-sdk-iot/types.rb', line 361 class AddThingsToThingGroupParams < Struct.new( :thing_group_names, :override_dynamic_groups) SENSITIVE = [] include Aws::Structure end |