Interface CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty.Jsii$Proxy
- Enclosing class:
CfnMitigationActionPropsMixin
@Stability(Stable)
public static interface CfnMitigationActionPropsMixin.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.cfnpropertymixins.services.iot.*;
AddThingsToThingGroupParamsProperty addThingsToThingGroupParamsProperty = AddThingsToThingGroupParamsProperty.builder()
.overrideDynamicGroups(false)
.thingGroupNames(List.of("thingGroupNames"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies 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
-
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.Returns union: either
BooleanorIResolvable- See Also:
-
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.
- See Also:
-
builder
@Stability(Stable) static CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty.Builder builder()
-