Class: Aws::QLDB::Types::ValueHolder

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

Overview

A structure that can contain a value in multiple encoding formats.

Constant Summary collapse

SENSITIVE =
[:ion_text]

Instance Attribute Summary collapse

Instance Attribute Details

#ion_textString

An Amazon Ion plaintext value contained in a ‘ValueHolder` structure.

Returns:

  • (String)


1646
1647
1648
1649
1650
# File 'lib/aws-sdk-qldb/types.rb', line 1646

class ValueHolder < Struct.new(
  :ion_text)
  SENSITIVE = [:ion_text]
  include Aws::Structure
end