Interface CfnThingGroup.IAttributePayloadProperty
The attribute payload.
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.AWS.IoT.dll
Syntax (csharp)
public interface IAttributePayloadProperty
Syntax (vb)
Public Interface IAttributePayloadProperty
Remarks
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.AWS.IoT;
var attributePayloadProperty = new AttributePayloadProperty {
Attributes = new Dictionary<string, string> {
{ "attributesKey", "attributes" }
}
};
Synopsis
Properties
Attributes | A JSON string containing up to three key-value pair in JSON format. For example:. |
Properties
Attributes
A JSON string containing up to three key-value pair in JSON format. For example:.
virtual object Attributes { get; }
Property Value
System.Object
Remarks
{"attributes":{"string1":"string2"}}