Class: Aws::IoT::Types::AddThingsToThingGroupParams
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AddThingsToThingGroupParams
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
When making an API call, you may pass AddThingsToThingGroupParams data as a hash:
{
thing_group_names: ["ThingGroupName"], # required
override_dynamic_groups: false,
}
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.
595 596 597 598 599 600 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 595 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.
595 596 597 598 599 600 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 595 class AddThingsToThingGroupParams < Struct.new( :thing_group_names, :override_dynamic_groups) SENSITIVE = [] include Aws::Structure end |