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.

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:



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

#tableTypes::TableDisplayConfigStruct

The configuration for tabular display of the widget data.

Returns:

  • (Types::TableDisplayConfigStruct)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



373
374
375
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 373

def unknown
  @unknown
end