Class: Aws::QuickSight::Types::ControlTitleFormatText

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-quicksight/types.rb

Overview

The title format text configuration for a sheet control. This is a tagged union type. Specify either ‘PlainText` or `RichText`, but not both.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#plain_textString

The plain text format of the title text.

Returns:

  • (String)


7338
7339
7340
7341
7342
7343
# File 'lib/aws-sdk-quicksight/types.rb', line 7338

class ControlTitleFormatText < Struct.new(
  :plain_text,
  :rich_text)
  SENSITIVE = []
  include Aws::Structure
end

#rich_textString

The rich text format of the title text.

Returns:

  • (String)


7338
7339
7340
7341
7342
7343
# File 'lib/aws-sdk-quicksight/types.rb', line 7338

class ControlTitleFormatText < Struct.new(
  :plain_text,
  :rich_text)
  SENSITIVE = []
  include Aws::Structure
end