Class CfnThingGroupMixinProps
Properties for CfnThingGroupPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IoT
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnThingGroupMixinProps : ICfnThingGroupMixinProps
Syntax (vb)
Public Class CfnThingGroupMixinProps Implements ICfnThingGroupMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thinggroup.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 cfnThingGroupMixinProps = new CfnThingGroupMixinProps {
ParentGroupName = "parentGroupName",
QueryString = "queryString",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
ThingGroupName = "thingGroupName",
ThingGroupProperties = new ThingGroupPropertiesProperty {
AttributePayload = new AttributePayloadProperty {
Attributes = new Dictionary<string, string> {
{ "attributesKey", "attributes" }
}
},
ThingGroupDescription = "thingGroupDescription"
}
};
Synopsis
Constructors
| CfnThingGroupMixinProps() | Properties for CfnThingGroupPropsMixin. |
Properties
| ParentGroupName | The parent thing group name. |
| QueryString | The dynamic thing group search query string. |
| Tags | Metadata which can be used to manage the thing group or dynamic thing group. |
| ThingGroupName | The thing group name. |
| ThingGroupProperties | Thing group properties. |
Constructors
CfnThingGroupMixinProps()
Properties for CfnThingGroupPropsMixin.
public CfnThingGroupMixinProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thinggroup.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 cfnThingGroupMixinProps = new CfnThingGroupMixinProps {
ParentGroupName = "parentGroupName",
QueryString = "queryString",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
ThingGroupName = "thingGroupName",
ThingGroupProperties = new ThingGroupPropertiesProperty {
AttributePayload = new AttributePayloadProperty {
Attributes = new Dictionary<string, string> {
{ "attributesKey", "attributes" }
}
},
ThingGroupDescription = "thingGroupDescription"
}
};
Properties
ParentGroupName
The parent thing group name.
public string? ParentGroupName { get; set; }
Property Value
Remarks
A Dynamic Thing Group does not have parentGroupName defined.
QueryString
The dynamic thing group search query string.
public string? QueryString { get; set; }
Property Value
Remarks
The queryString attribute is required for CreateDynamicThingGroup . The queryString attribute is not required for CreateThingGroup .
Tags
Metadata which can be used to manage the thing group or dynamic thing group.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
ThingGroupName
The thing group name.
public string? ThingGroupName { get; set; }
Property Value
Remarks
ThingGroupProperties
Thing group properties.
public object? ThingGroupProperties { get; set; }