interface CfnDashboardMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Mixins.CfnDashboardMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudwatch/mixins#CfnDashboardMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudwatch.mixins.CfnDashboardMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudwatch.mixins.CfnDashboardMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudwatch » mixins » CfnDashboardMixinProps |
Properties for CfnDashboardPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudwatch_mixins } from '@aws-cdk/mixins-preview/aws-cloudwatch';
const cfnDashboardMixinProps: cloudwatch_mixins.CfnDashboardMixinProps = {
dashboardBody: 'dashboardBody',
dashboardName: 'dashboardName',
};
Properties
| Name | Type | Description |
|---|---|---|
| dashboard | string | The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard. |
| dashboard | string | The name of the dashboard. |
dashboardBody?
Type:
string
(optional)
The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard.
This parameter is required.
For more information about the syntax, see Dashboard Body Structure and Syntax .
dashboardName?
Type:
string
(optional)
The name of the dashboard.
The name must be between 1 and 255 characters. If you do not specify a name, one will be generated automatically.

.NET
Go
Java
Python
TypeScript