Class: Aws::QuickSight::Types::ShortFormatText

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

Overview

The text format for the title.

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)


28367
28368
28369
28370
28371
28372
# File 'lib/aws-sdk-quicksight/types.rb', line 28367

class ShortFormatText < 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)


28367
28368
28369
28370
28371
28372
# File 'lib/aws-sdk-quicksight/types.rb', line 28367

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