CfnDashboardMixinProps

class aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnDashboardMixinProps(*, dashboard_definition=None, dashboard_description=None, dashboard_name=None, project_id=None, tags=None)

Bases: object

Properties for CfnDashboardPropsMixin.

Parameters:
  • dashboard_definition (Optional[str]) –

    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

  • dashboard_description (Optional[str]) – A description for the dashboard.

  • dashboard_name (Optional[str]) – A friendly name for the dashboard.

  • project_id (Optional[str]) – The ID of the project in which to create the dashboard.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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 .

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_iotsitewise import mixins as iotsitewise_mixins

cfn_dashboard_mixin_props = iotsitewise_mixins.CfnDashboardMixinProps(
    dashboard_definition="dashboardDefinition",
    dashboard_description="dashboardDescription",
    dashboard_name="dashboardName",
    project_id="projectId",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

dashboard_definition

The dashboard definition specified in a JSON literal.

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

dashboard_description

A description for the dashboard.

See:

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

dashboard_name

A friendly name for the dashboard.

See:

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

project_id

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

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.

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