interface AddThingsToThingGroupParamsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnMitigationActionPropsMixin_AddThingsToThingGroupParamsProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnMitigationActionPropsMixin » AddThingsToThingGroupParamsProperty |
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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const addThingsToThingGroupParamsProperty: iot_mixins.CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty = {
overrideDynamicGroups: false,
thingGroupNames: ['thingGroupNames'],
};
Properties
| Name | Type | Description |
|---|---|---|
| override | boolean | IResolvable | 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 | string[] | The list of groups to which you want to add the things that triggered the mitigation action. |
overrideDynamicGroups?
Type:
boolean | IResolvable
(optional)
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.
thingGroupNames?
Type:
string[]
(optional)
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.

.NET
Go
Java
Python
TypeScript