Interface CfnMitigationAction.AddThingsToThingGroupParamsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMitigationAction.AddThingsToThingGroupParamsProperty.Jsii$Proxy
- Enclosing class:
- CfnMitigationAction
@Stability(Stable)
public static interface CfnMitigationAction.AddThingsToThingGroupParamsProperty
extends software.amazon.jsii.JsiiSerializable
Parameters used when defining a mitigation action that move a set of things to a thing group.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iot.*; AddThingsToThingGroupParamsProperty addThingsToThingGroupParamsProperty = AddThingsToThingGroupParamsProperty.builder() .thingGroupNames(List.of("thingGroupNames")) // the properties below are optional .overrideDynamicGroups(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMitigationAction.AddThingsToThingGroupParamsProperty
static final class
An implementation forCfnMitigationAction.AddThingsToThingGroupParamsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
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.The list of groups to which you want to add the things that triggered the mitigation action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getThingGroupNames
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.
-
getOverrideDynamicGroups
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. -
builder
-