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.
373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 373 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.
373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 373 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
373 374 375 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 373 def unknown @unknown end |