Show / Hide Table of Contents

Class CfnDashboardProps

Properties for defining a CfnDashboard.

Inheritance
System.Object
CfnDashboardProps
Implements
ICfnDashboardProps
Namespace: Amazon.CDK.AWS.CloudWatch
Assembly: Amazon.CDK.AWS.CloudWatch.dll
Syntax (csharp)
public class CfnDashboardProps : Object, ICfnDashboardProps
Syntax (vb)
Public Class CfnDashboardProps
    Inherits Object
    Implements ICfnDashboardProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-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.CloudWatch;

var cfnDashboardProps = new CfnDashboardProps {
    DashboardBody = "dashboardBody",

    // the properties below are optional
    DashboardName = "dashboardName"
};

Synopsis

Constructors

CfnDashboardProps()

Properties

DashboardBody

The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard.

DashboardName

The name of the dashboard.

Constructors

CfnDashboardProps()

public CfnDashboardProps()

Properties

DashboardBody

The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard.

public string DashboardBody { get; set; }
Property Value

System.String

Remarks

This parameter is required.

For more information about the syntax, see Dashboard Body Structure and Syntax .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody

DashboardName

The name of the dashboard.

public string DashboardName { get; set; }
Property Value

System.String

Remarks

The name must be between 1 and 255 characters. If you do not specify a name, one will be generated automatically.

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

Implements

ICfnDashboardProps
Back to top Generated by DocFX