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();
 

See Also: