Show / Hide Table of Contents

Class CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty

Parameters used when defining a mitigation action that move a set of things to a thing group.

Inheritance
object
CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty
Implements
CfnMitigationActionPropsMixin.IAddThingsToThingGroupParamsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IoT
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty : CfnMitigationActionPropsMixin.IAddThingsToThingGroupParamsProperty
Syntax (vb)
Public Class CfnMitigationActionPropsMixin.AddThingsToThingGroupParamsProperty Implements CfnMitigationActionPropsMixin.IAddThingsToThingGroupParamsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-mitigationaction-addthingstothinggroupparams.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.IoT;

             var addThingsToThingGroupParamsProperty = new AddThingsToThingGroupParamsProperty {
                 OverrideDynamicGroups = false,
                 ThingGroupNames = new [] { "thingGroupNames" }
             };

Synopsis

Constructors

AddThingsToThingGroupParamsProperty()

Parameters used when defining a mitigation action that move a set of things to a thing group.

Properties

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.

ThingGroupNames

The list of groups to which you want to add the things that triggered the mitigation action.

Constructors

AddThingsToThingGroupParamsProperty()

Parameters used when defining a mitigation action that move a set of things to a thing group.

public AddThingsToThingGroupParamsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-mitigationaction-addthingstothinggroupparams.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.IoT;

             var addThingsToThingGroupParamsProperty = new AddThingsToThingGroupParamsProperty {
                 OverrideDynamicGroups = false,
                 ThingGroupNames = new [] { "thingGroupNames" }
             };

Properties

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.

public object? OverrideDynamicGroups { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-mitigationaction-addthingstothinggroupparams.html#cfn-iot-mitigationaction-addthingstothinggroupparams-overridedynamicgroups

Type union: either bool or IResolvable

ThingGroupNames

The list of groups to which you want to add the things that triggered the mitigation action.

public string[]? ThingGroupNames { get; set; }
Property Value

string[]

Remarks

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: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-mitigationaction-addthingstothinggroupparams.html#cfn-iot-mitigationaction-addthingstothinggroupparams-thinggroupnames

Implements

CfnMitigationActionPropsMixin.IAddThingsToThingGroupParamsProperty
Back to top Generated by DocFX