Interface ICfnDashboardProps
Properties for defining a CfnDashboard
.
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDashboardProps
Syntax (vb)
Public Interface 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
Properties
DashboardDefinition | The dashboard definition specified in a JSON literal. |
DashboardDescription | A description for the dashboard. |
DashboardName | A friendly name for the dashboard. |
ProjectId | The ID of the project in which to create the dashboard. |
Tags | A list of key-value pairs that contain metadata for the dashboard. |
Properties
DashboardDefinition
The dashboard definition specified in a JSON literal.
string DashboardDefinition { get; }
Property Value
System.String
Remarks
in the AWS IoT SiteWise User Guide
DashboardDescription
A description for the dashboard.
string DashboardDescription { get; }
Property Value
System.String
Remarks
DashboardName
A friendly name for the dashboard.
string DashboardName { get; }
Property Value
System.String
Remarks
ProjectId
The ID of the project in which to create the dashboard.
virtual string ProjectId { get; }
Property Value
System.String
Remarks
Tags
A list of key-value pairs that contain metadata for the dashboard.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]
Remarks
For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .