Show / Hide Table of Contents

Class DashboardReference

A reference to a Dashboard resource.

Inheritance
object
DashboardReference
Implements
IDashboardReference
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.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

string

Remarks

ExampleMetadata: fixture=_generated

DashboardId

The DashboardId of the Dashboard resource.

public string DashboardId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDashboardReference
Back to top Generated by DocFX