Interface CfnDashboardProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:07.741Z")
@Stability(Stable)
public interface CfnDashboardProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDashboard.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotsitewise.*;
CfnDashboardProps cfnDashboardProps = CfnDashboardProps.builder()
.dashboardDefinition("dashboardDefinition")
.dashboardDescription("dashboardDescription")
.dashboardName("dashboardName")
// the properties below are optional
.projectId("projectId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboardPropsstatic final classAn implementation forCfnDashboardProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDashboardProps.Builderbuilder()The dashboard definition specified in a JSON literal.A description for the dashboard.A friendly name for the dashboard.default StringThe ID of the project in which to create the dashboard.getTags()A list of key-value pairs that contain metadata for the dashboard.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDashboardDefinition
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
- See Also:
-
getDashboardDescription
A description for the dashboard.- See Also:
-
getDashboardName
A friendly name for the dashboard.- See Also:
-
getProjectId
The ID of the project in which to create the dashboard.- See Also:
-
getTags
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 Also:
-
builder
- Returns:
- a
CfnDashboardProps.BuilderofCfnDashboardProps
-