Class: Aws::BCMDashboards::Types::DisplayConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb

Overview

Note:

DisplayConfig is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Direct Known Subclasses

Graph, Table, Unknown

Defined Under Namespace

Classes: Graph, Table, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#graphHash<String,Types::GraphDisplayConfig>

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

Returns:



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

#tableTypes::TableDisplayConfigStruct

The configuration for tabular display of the widget data.

Returns:

  • (Types::TableDisplayConfigStruct)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



293
294
295
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 293

def unknown
  @unknown
end