Class: Aws::QuickSight::Types::LongFormatText

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

Overview

The text format for a subtitle.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#plain_textString

Plain text format.

Returns:

  • (String)


21003
21004
21005
21006
21007
21008
# File 'lib/aws-sdk-quicksight/types.rb', line 21003

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

#rich_textString

Rich text. Examples of rich text include bold, underline, and italics.

Returns:

  • (String)


21003
21004
21005
21006
21007
21008
# File 'lib/aws-sdk-quicksight/types.rb', line 21003

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