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)


20172
20173
20174
20175
20176
20177
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20172

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)


20172
20173
20174
20175
20176
20177
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 20172

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