DisplayConfig

sealed class DisplayConfig

Defines how the widget's data should be visualized, including chart type, color schemes, axis configurations, and other display preferences.

Inheritors

Types

Link copied to clipboard
data class Graph(val value: Map<String, GraphDisplayConfig>) : DisplayConfig

The configuration for graphical display of the widget data, including chart type and visual options.

Link copied to clipboard
Link copied to clipboard

The configuration for tabular display of the widget data.

Functions

Link copied to clipboard

Casts this DisplayConfig as a Graph and retrieves its kotlin.collections.Map value. Throws an exception if the DisplayConfig is not a Graph.

Link copied to clipboard

Casts this DisplayConfig as a Graph and retrieves its kotlin.collections.Map value. Returns null if the DisplayConfig is not a Graph.

Link copied to clipboard

Casts this DisplayConfig as a Table and retrieves its aws.sdk.kotlin.services.bcmdashboards.model.TableDisplayConfigStruct value. Throws an exception if the DisplayConfig is not a Table.

Link copied to clipboard