Class DashboardReference
A reference to a Dashboard resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DashboardReference : IDashboardReference
Syntax (vb)
Public Class DashboardReference Implements IDashboardReference
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.IoTSiteWise;
var dashboardReference = new DashboardReference {
DashboardArn = "dashboardArn",
DashboardId = "dashboardId"
};
Synopsis
Constructors
| DashboardReference() | A reference to a Dashboard resource. |
Properties
| DashboardArn | The ARN of the Dashboard resource. |
| DashboardId | The DashboardId of the Dashboard resource. |
Constructors
DashboardReference()
A reference to a Dashboard resource.
public DashboardReference()
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.IoTSiteWise;
var dashboardReference = new DashboardReference {
DashboardArn = "dashboardArn",
DashboardId = "dashboardId"
};
Properties
DashboardArn
The ARN of the Dashboard resource.
public string DashboardArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DashboardId
The DashboardId of the Dashboard resource.
public string DashboardId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated