Interface AddThingsToThingGroupParams.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AddThingsToThingGroupParams.Builder,AddThingsToThingGroupParams>,SdkBuilder<AddThingsToThingGroupParams.Builder,AddThingsToThingGroupParams>,SdkPojo
- Enclosing class:
- AddThingsToThingGroupParams
public static interface AddThingsToThingGroupParams.Builder extends SdkPojo, CopyableBuilder<AddThingsToThingGroupParams.Builder,AddThingsToThingGroupParams>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddThingsToThingGroupParams.BuilderoverrideDynamicGroups(Boolean overrideDynamicGroups)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.AddThingsToThingGroupParams.BuilderthingGroupNames(String... thingGroupNames)The list of groups to which you want to add the things that triggered the mitigation action.AddThingsToThingGroupParams.BuilderthingGroupNames(Collection<String> thingGroupNames)The list of groups to which you want to add the things that triggered the mitigation action.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
thingGroupNames
AddThingsToThingGroupParams.Builder thingGroupNames(Collection<String> thingGroupNames)
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.
- Parameters:
thingGroupNames- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingGroupNames
AddThingsToThingGroupParams.Builder thingGroupNames(String... thingGroupNames)
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.
- Parameters:
thingGroupNames- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideDynamicGroups
AddThingsToThingGroupParams.Builder overrideDynamicGroups(Boolean overrideDynamicGroups)
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.
- Parameters:
overrideDynamicGroups- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-