Interface TextWidgetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TextWidgetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:58.542Z")
@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 TextWidgetBackground
Background for the widget.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. -
getBackground
Background for the widget.Default: solid
-
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
-