Column¶
-
class
aws_cdk.aws_cloudwatch.
Column
(*widgets)¶ Bases:
object
A widget that contains other widgets in a vertical column.
Widgets will be laid out next to each other
- Parameters
widgets (
IWidget
) –
Methods
-
position
(x, y)¶ Place the widget at a given position.
- Parameters
x (
Union
[int
,float
]) –y (
Union
[int
,float
]) –
- Return type
None
-
to_json
()¶ Return the widget JSON for use in the dashboard.
- Return type
List
[Any
]
Attributes
-
height
¶ The amount of vertical grid units the widget will take up.
- Return type
Union
[int
,float
]
-
width
¶ The amount of horizontal grid units the widget will take up.
- Return type
Union
[int
,float
]