Interface CfnDashboardProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboardProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.920Z") @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();
 
  • Method Details

    • getDashboardDefinition

      @Stability(Stable) @NotNull String getDashboardDefinition()
      The dashboard definition specified in a JSON literal.

      For detailed information, see Creating dashboards (CLI) in the AWS IoT SiteWise User Guide .

    • getDashboardDescription

      @Stability(Stable) @NotNull String getDashboardDescription()
      A description for the dashboard.
    • getDashboardName

      @Stability(Stable) @NotNull String getDashboardName()
      A friendly name for the dashboard.
    • getProjectId

      @Stability(Stable) @Nullable default String getProjectId()
      The ID of the project in which to create the dashboard.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> 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 .

    • builder

      @Stability(Stable) static CfnDashboardProps.Builder builder()
      Returns:
      a CfnDashboardProps.Builder of CfnDashboardProps