Class: Aws::BCMDashboards::Types::DisplayConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::DisplayConfig
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
DisplayConfig is a union - when making an API calls you must set exactly one of the members.
DisplayConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DisplayConfig corresponding to the set member.
Defines how the widget's data should be visualized, including chart type, color schemes, axis configurations, and other display preferences.
Defined Under Namespace
Classes: Graph, Table, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#graph ⇒ Hash<String,Types::GraphDisplayConfig>
The configuration for graphical display of the widget data, including chart type and visual options.
-
#table ⇒ Types::TableDisplayConfigStruct
The configuration for tabular display of the widget data.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#graph ⇒ Hash<String,Types::GraphDisplayConfig>
The configuration for graphical display of the widget data, including chart type and visual options.
293 294 295 296 297 298 299 300 301 302 303 304 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 293 class DisplayConfig < Struct.new( :graph, :table, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Graph < DisplayConfig; end class Table < DisplayConfig; end class Unknown < DisplayConfig; end end |
#table ⇒ Types::TableDisplayConfigStruct
The configuration for tabular display of the widget data.
293 294 295 296 297 298 299 300 301 302 303 304 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 293 class DisplayConfig < Struct.new( :graph, :table, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Graph < DisplayConfig; end class Table < DisplayConfig; end class Unknown < DisplayConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
293 294 295 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 293 def unknown @unknown end |