Show / Hide Table of Contents

Class DimensionReference

A reference to a Dimension resource.

Inheritance
object
DimensionReference
Implements
IDimensionReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DimensionReference : IDimensionReference
Syntax (vb)
Public Class DimensionReference Implements IDimensionReference
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 dimensionReference = new DimensionReference {
                DimensionArn = "dimensionArn",
                DimensionName = "dimensionName"
            };

Synopsis

Constructors

DimensionReference()

A reference to a Dimension resource.

Properties

DimensionArn

The ARN of the Dimension resource.

DimensionName

The Name of the Dimension resource.

Constructors

DimensionReference()

A reference to a Dimension resource.

public DimensionReference()
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 dimensionReference = new DimensionReference {
                DimensionArn = "dimensionArn",
                DimensionName = "dimensionName"
            };

Properties

DimensionArn

The ARN of the Dimension resource.

public string DimensionArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DimensionName

The Name of the Dimension resource.

public string DimensionName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDimensionReference
Back to top Generated by DocFX