Class CfnDashboardProps
Properties for defining a CfnDashboard
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboardProps : Object, ICfnDashboardProps
Syntax (vb)
Public Class CfnDashboardProps
Inherits Object
Implements ICfnDashboardProps
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 cfnDashboardProps = new CfnDashboardProps {
DashboardDefinition = "dashboardDefinition",
DashboardDescription = "dashboardDescription",
DashboardName = "dashboardName",
// the properties below are optional
ProjectId = "projectId",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
Cfn |
Properties
Dashboard |
The dashboard definition specified in a JSON literal. |
Dashboard |
A description for the dashboard. |
Dashboard |
A friendly name for the dashboard. |
Project |
The ID of the project in which to create the dashboard. |
Tags | A list of key-value pairs that contain metadata for the dashboard. |
Constructors
CfnDashboardProps()
public CfnDashboardProps()
Properties
DashboardDefinition
The dashboard definition specified in a JSON literal.
public string DashboardDefinition { get; set; }
Property Value
System.
Remarks
in the AWS IoT SiteWise User Guide
DashboardDescription
A description for the dashboard.
public string DashboardDescription { get; set; }
Property Value
System.
Remarks
DashboardName
A friendly name for the dashboard.
public string DashboardName { get; set; }
Property Value
System.
Remarks
ProjectId
The ID of the project in which to create the dashboard.
public string ProjectId { get; set; }
Property Value
System.
Remarks
Tags
A list of key-value pairs that contain metadata for the dashboard.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn
Remarks
For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .