@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.045Z") @Stability(value=Stable) public interface CfnDashboardProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDashboardProps.Builder
A builder for
CfnDashboardProps |
static class |
CfnDashboardProps.Jsii$Proxy
An implementation for
CfnDashboardProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDashboardProps.Builder |
builder() |
String |
getDashboardDefinition()
The dashboard definition specified in a JSON literal.
|
String |
getDashboardDescription()
A description for the dashboard.
|
String |
getDashboardName()
A friendly name for the dashboard.
|
default String |
getProjectId()
The ID of the project in which to create the dashboard.
|
default List<CfnTag> |
getTags()
A list of key-value pairs that contain metadata for the dashboard.
|
@Stability(value=Stable) @NotNull String getDashboardDefinition()
For detailed information, see Creating dashboards (CLI) in the AWS IoT SiteWise User Guide .
@Stability(value=Stable) @NotNull String getDashboardDescription()
@Stability(value=Stable) @NotNull String getDashboardName()
@Stability(value=Stable) @Nullable default String getProjectId()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .
@Stability(value=Stable) static CfnDashboardProps.Builder builder()
CfnDashboardProps.Builder of CfnDashboardPropsCopyright © 2022. All rights reserved.