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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/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)


20283
20284
20285
20286
20287
20288
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20283

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)


20283
20284
20285
20286
20287
20288
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20283

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