Show / Hide Table of Contents

Class CfnThingPropsMixin.AttributePayloadProperty

The AttributePayload property specifies up to three attributes for an AWS IoT as key-value pairs.

Inheritance
object
CfnThingPropsMixin.AttributePayloadProperty
Implements
CfnThingPropsMixin.IAttributePayloadProperty
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 CfnThingPropsMixin.AttributePayloadProperty : CfnThingPropsMixin.IAttributePayloadProperty
Syntax (vb)
Public Class CfnThingPropsMixin.AttributePayloadProperty Implements CfnThingPropsMixin.IAttributePayloadProperty
Remarks

AttributePayload is a property of the AWS::IoT::Thing resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thing-attributepayload.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 attributePayloadProperty = new AttributePayloadProperty {
                 Attributes = new Dictionary<string, string> {
                     { "attributesKey", "attributes" }
                 }
             };

Synopsis

Constructors

AttributePayloadProperty()

The AttributePayload property specifies up to three attributes for an AWS IoT as key-value pairs.

Properties

Attributes

A JSON string containing up to three key-value pair in JSON format. For example:.

Constructors

AttributePayloadProperty()

The AttributePayload property specifies up to three attributes for an AWS IoT as key-value pairs.

public AttributePayloadProperty()
Remarks

AttributePayload is a property of the AWS::IoT::Thing resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thing-attributepayload.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 attributePayloadProperty = new AttributePayloadProperty {
                 Attributes = new Dictionary<string, string> {
                     { "attributesKey", "attributes" }
                 }
             };

Properties

Attributes

A JSON string containing up to three key-value pair in JSON format. For example:.

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

object

Remarks

{"attributes":{"string1":"string2"}}

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thing-attributepayload.html#cfn-iot-thing-attributepayload-attributes

Type union: either Dictionary<string, string> or IResolvable

Implements

CfnThingPropsMixin.IAttributePayloadProperty
Back to top Generated by DocFX