Class DimensionReference
A reference to a Dimension resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
DimensionName
The Name of the Dimension resource.
public string DimensionName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated