Interface CfnDashboardMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboardMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:13.773Z")
@Stability(Stable)
public interface CfnDashboardMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDashboardPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.*;
CfnDashboardMixinProps cfnDashboardMixinProps = CfnDashboardMixinProps.builder()
.dashboardDefinition("dashboardDefinition")
.dashboardDescription("dashboardDescription")
.dashboardName("dashboardName")
.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 forCfnDashboardMixinPropsstatic final classAn implementation forCfnDashboardMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe dashboard definition specified in a JSON literal.default StringA description for the dashboard.default StringA 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
CfnDashboardMixinProps.BuilderofCfnDashboardMixinProps
-