Class: Aws::RDSDataService::Types::Field
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDSDataService::Types::Field
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-rdsdataservice/types.rb
 
Overview
Field is a union - when making an API calls you must set exactly one of the members.
Field is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Field corresponding to the set member.
Contains a value.
Direct Known Subclasses
ArrayValue, BlobValue, BooleanValue, DoubleValue, IsNull, LongValue, StringValue, Unknown
Defined Under Namespace
Classes: ArrayValue, BlobValue, BooleanValue, DoubleValue, IsNull, LongValue, StringValue, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #array_value  ⇒ Types::ArrayValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of values.
 - 
  
    
      #blob_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value of BLOB data type.
 - 
  
    
      #boolean_value  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value of Boolean data type.
 - 
  
    
      #double_value  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value of double data type.
 - 
  
    
      #is_null  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A NULL value.
 - 
  
    
      #long_value  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value of long data type.
 - 
  
    
      #string_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value of string data type.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#array_value ⇒ Types::ArrayValue
An array of values.
      636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 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  | 
  
#blob_value ⇒ String
A value of BLOB data type.
      636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 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  | 
  
#boolean_value ⇒ Boolean
A value of Boolean data type.
      636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 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  | 
  
#double_value ⇒ Float
A value of double data type.
      636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 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  | 
  
#is_null ⇒ Boolean
A NULL value.
      636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 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  | 
  
#long_value ⇒ Integer
A value of long data type.
      636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 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  | 
  
#string_value ⇒ String
A value of string data type.
      636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 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  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      636 637 638  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 636 def unknown @unknown end  |