Class: Aws::RDSDataService::Types::Field
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDSDataService::Types::Field
 
- Defined in:
- gems/aws-sdk-rdsdataservice/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.
| 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 | # File 'gems/aws-sdk-rdsdataservice/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 | 
#blob_value ⇒ String
A value of BLOB 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 'gems/aws-sdk-rdsdataservice/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 | 
#boolean_value ⇒ Boolean
A value of Boolean 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 'gems/aws-sdk-rdsdataservice/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 | 
#double_value ⇒ Float
A value of double 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 'gems/aws-sdk-rdsdataservice/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 | 
#is_null ⇒ Boolean
A NULL value.
| 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 | # File 'gems/aws-sdk-rdsdataservice/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 | 
#long_value ⇒ Integer
A value of long 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 'gems/aws-sdk-rdsdataservice/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 | 
#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 'gems/aws-sdk-rdsdataservice/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 | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 651 652 653 | # File 'gems/aws-sdk-rdsdataservice/lib/aws-sdk-rdsdataservice/types.rb', line 651 def unknown @unknown end |