Interface CfnDashboardProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-15T21:09:15.910Z") @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.cloudtrail.*;
 CfnDashboardProps cfnDashboardProps = CfnDashboardProps.builder()
         .name("name")
         .refreshSchedule(RefreshScheduleProperty.builder()
                 .frequency(FrequencyProperty.builder()
                         .unit("unit")
                         .value(123)
                         .build())
                 .status("status")
                 .timeOfDay("timeOfDay")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .terminationProtectionEnabled(false)
         .widgets(List.of(WidgetProperty.builder()
                 .queryStatement("queryStatement")
                 // the properties below are optional
                 .queryParameters(List.of("queryParameters"))
                 .viewProperties(Map.of(
                         "viewPropertiesKey", "viewProperties"))
                 .build()))
         .build();
 

See Also: