Method: Aws::RDSDataService::Types::Field#string_value
- Defined in:
- lib/aws-sdk-rdsdataservice/types.rb
#string_value ⇒ String
A value of string data type.
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 |
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 651 class Field < Struct.new( :is_null, :boolean_value, :long_value, :double_value, :string_value, :blob_value, :array_value, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IsNull < Field; end class BooleanValue < Field; end class LongValue < Field; end class DoubleValue < Field; end class StringValue < Field; end class BlobValue < Field; end class ArrayValue < Field; end class Unknown < Field; end end |