Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html

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

string

Remarks

    in the AWS IoT SiteWise User Guide

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html#cfn-iotsitewise-dashboard-dashboarddefinition

    DashboardDescription

    A description for the dashboard.

    string DashboardDescription { get; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html#cfn-iotsitewise-dashboard-dashboarddescription

    DashboardName

    A friendly name for the dashboard.

    string DashboardName { get; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html#cfn-iotsitewise-dashboard-dashboardname

    ProjectId

    The ID of the project in which to create the dashboard.

    string? ProjectId { get; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html#cfn-iotsitewise-dashboard-projectid

    Tags

    A list of key-value pairs that contain metadata for the dashboard.

    ICfnTag[]? Tags { get; }
    Property Value

    ICfnTag[]

    Remarks

    For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html#cfn-iotsitewise-dashboard-tags

    Back to top Generated by DocFX