interface CfnDashboardMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnDashboardMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnDashboardMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnDashboardMixinProps |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnDashboardMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnDashboardMixinProps |
Properties for CfnDashboardPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const cfnDashboardMixinProps: iotsitewise_mixins.CfnDashboardMixinProps = {
dashboardDefinition: 'dashboardDefinition',
dashboardDescription: 'dashboardDescription',
dashboardName: 'dashboardName',
projectId: 'projectId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dashboard | string | The dashboard definition specified in a JSON literal. |
| dashboard | string | A description for the dashboard. |
| dashboard | string | A friendly name for the dashboard. |
| project | string | The ID of the project in which to create the dashboard. |
| tags? | Cfn[] | A list of key-value pairs that contain metadata for the dashboard. |
dashboardDefinition?
Type:
string
(optional)
The dashboard definition specified in a JSON literal.
- AWS IoT SiteWise Monitor (Classic) see Create dashboards ( AWS CLI )
- AWS IoT SiteWise Monitor (AI-aware) see Create dashboards ( AWS CLI )
in the AWS IoT SiteWise User Guide
dashboardDescription?
Type:
string
(optional)
A description for the dashboard.
dashboardName?
Type:
string
(optional)
A friendly name for the dashboard.
projectId?
Type:
string
(optional)
The ID of the project in which to create the dashboard.
tags?
Type:
Cfn[]
(optional)
A list of key-value pairs that contain metadata for the dashboard.
For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .

.NET
Go
Java
Python
TypeScript