Class CfnDimensionProps
Properties for defining a CfnDimension
.
Inheritance
System.Object
CfnDimensionProps
Implements
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.AWS.IoT.dll
Syntax (csharp)
public class CfnDimensionProps : Object, ICfnDimensionProps
Syntax (vb)
Public Class CfnDimensionProps
Inherits Object
Implements ICfnDimensionProps
Remarks
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.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.AWS.IoT;
var cfnDimensionProps = new CfnDimensionProps {
StringValues = new [] { "stringValues" },
Type = "type",
// the properties below are optional
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnDimensionProps() |
Properties
Name | A unique identifier for the dimension. |
StringValues | Specifies the value or list of values for the dimension. |
Tags | Metadata that can be used to manage the dimension. |
Type | Specifies the type of dimension. |
Constructors
CfnDimensionProps()
public CfnDimensionProps()
Properties
Name
A unique identifier for the dimension.
public string Name { get; set; }
Property Value
System.String
Remarks
StringValues
Specifies the value or list of values for the dimension.
public string[] StringValues { get; set; }
Property Value
System.String[]
Remarks
For TOPIC_FILTER
dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").
Tags
Metadata that can be used to manage the dimension.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Type
Specifies the type of dimension.
public string Type { get; set; }
Property Value
System.String
Remarks
Supported types: TOPIC_FILTER.