Interface TextWidgetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TextWidgetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:36.908Z")
@Stability(Stable)
public interface TextWidgetProps
extends software.amazon.jsii.JsiiSerializable
Properties for a Text widget.
Example:
Dashboard dashboard; dashboard.addWidgets(TextWidget.Builder.create() .markdown("# Key Performance Indicators") .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forTextWidgetProps
static final class
An implementation forTextWidgetProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic TextWidgetProps.Builder
builder()
default Number
Height of the widget.The text to display, in MarkDown format.default Number
getWidth()
Width of the widget, in a grid of 24 units wide.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMarkdown
The text to display, in MarkDown format. -
getHeight
Height of the widget.Default: 2
-
getWidth
Width of the widget, in a grid of 24 units wide.Default: 6
-
builder
- Returns:
- a
TextWidgetProps.Builder
ofTextWidgetProps
-